diff -Nru azure-data-lake-store-python-0.0.51/azure/datalake/store/core.py azure-data-lake-store-python-0.0.52/azure/datalake/store/core.py --- azure-data-lake-store-python-0.0.51/azure/datalake/store/core.py 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/azure/datalake/store/core.py 2021-04-02 20:17:17.000000000 +0000 @@ -1136,7 +1136,7 @@ self.cache = b"" return if self.start <= offset < self.end: - logger.info("Read offset {offset} is within cache {start}-{end}. " + logger.debug("Read offset {offset} is within cache {start}-{end}. " "Not going to server.".format(offset=offset, start=self.start, end=self.end)) return if offset > self.size: @@ -1285,7 +1285,7 @@ If in write mode, causes flush of any unwritten data. """ - logger.info("closing stream") + logger.debug("closing stream") if self.closed: return if self.writable(): diff -Nru azure-data-lake-store-python-0.0.51/azure/datalake/store/__init__.py azure-data-lake-store-python-0.0.52/azure/datalake/store/__init__.py --- azure-data-lake-store-python-0.0.51/azure/datalake/store/__init__.py 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/azure/datalake/store/__init__.py 2021-04-02 20:17:17.000000000 +0000 @@ -6,7 +6,7 @@ # license information. # -------------------------------------------------------------------------- -__version__ = "0.0.51" +__version__ = "0.0.52" from .core import AzureDLFileSystem from .multithread import ADLDownloader diff -Nru azure-data-lake-store-python-0.0.51/azure/datalake/store/multiprocessor.py azure-data-lake-store-python-0.0.52/azure/datalake/store/multiprocessor.py --- azure-data-lake-store-python-0.0.51/azure/datalake/store/multiprocessor.py 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/azure/datalake/store/multiprocessor.py 2021-04-02 20:17:17.000000000 +0000 @@ -8,8 +8,10 @@ from .exceptions import FileNotFoundError try: from queue import Empty # Python 3 + import _thread except ImportError: from Queue import Empty # Python 2 + import thread WORKER_THREAD_PER_PROCESS = 50 QUEUE_BUCKET_SIZE = 10 @@ -37,7 +39,7 @@ logger.log(logging.DEBUG, "Joining processes") for p in process_ids: p.join() - import thread + logger.log(logging.DEBUG, "Interrupting main") raise Exception(local_exception) except Empty: @@ -85,10 +87,13 @@ if files['type'] == 'DIRECTORY': dir_processed_counter.increment() # A new directory to process walk_thread_pool.submit(walk, files['name']) - paths.append(files['name']) + + paths.append((files['name'], files['type'] == 'FILE')) + if len(paths) == QUEUE_BUCKET_SIZE: file_path_queue.put(list(paths)) paths = [] + if paths != []: file_path_queue.put(list(paths)) # For leftover paths < bucket_size except FileNotFoundError: @@ -116,7 +121,7 @@ walk_thread_pool = ThreadPoolExecutor(max_workers=WORKER_THREAD_PER_PROCESS) # Root directory needs to be explicitly passed - file_path_queue.put([path]) + file_path_queue.put([(path, False)]) dir_processed_counter.increment() # Processing starts here @@ -149,6 +154,8 @@ def processor(adl, file_path_queue, finish_queue_processing_flag, method_name, acl_spec, log_queue, exception_queue): logger = logging.getLogger(__name__) + removed_default_acl_spec = ",".join([x for x in acl_spec.split(',') if not x.lower().startswith("default")]) + try: logger.addHandler(logging.handlers.QueueHandler(log_queue)) logger.propagate = False # Prevents double logging @@ -178,8 +185,14 @@ file_paths = file_path_queue.get(timeout=0.1) file_path_queue.task_done() # Will not be called if empty for file_path in file_paths: + is_file = file_path[1] + if is_file: + spec = removed_default_acl_spec + else: + spec = acl_spec + logger.log(logging.DEBUG, "Starting on path:" + str(file_path)) - function_thread_pool.submit(func_wrapper, adl_function, file_path, acl_spec) + function_thread_pool.submit(func_wrapper, adl_function, file_path[0], spec) except Empty: pass diff -Nru azure-data-lake-store-python-0.0.51/debian/changelog azure-data-lake-store-python-0.0.52/debian/changelog --- azure-data-lake-store-python-0.0.51/debian/changelog 2020-10-19 09:47:41.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/debian/changelog 2021-08-25 10:54:07.000000000 +0000 @@ -1,3 +1,11 @@ +azure-data-lake-store-python (0.0.52-1) unstable; urgency=medium + + * Merge tag 'v0.0.52' into debian/sid + * Bump Standards-Version to 4.6.0, no changes + * Bump debhelper-compat to 13 + + -- Luca Boccassi Wed, 25 Aug 2021 11:54:07 +0100 + azure-data-lake-store-python (0.0.51-1) unstable; urgency=medium [ Ondřej Nový ] diff -Nru azure-data-lake-store-python-0.0.51/debian/control azure-data-lake-store-python-0.0.52/debian/control --- azure-data-lake-store-python-0.0.51/debian/control 2020-10-19 09:47:20.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/debian/control 2021-08-25 10:54:00.000000000 +0000 @@ -1,7 +1,7 @@ Source: azure-data-lake-store-python Maintainer: Debian Python Team Uploaders: Luca Boccassi , -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper-compat (= 13), dh-python, python3-adal, python3-all, @@ -10,7 +10,7 @@ python3-setuptools, python3-sphinx , python3-sphinx-rtd-theme , -Standards-Version: 4.5.0 +Standards-Version: 4.6.0 Section: python Priority: optional Rules-Requires-Root: no diff -Nru azure-data-lake-store-python-0.0.51/HISTORY.rst azure-data-lake-store-python-0.0.52/HISTORY.rst --- azure-data-lake-store-python-0.0.51/HISTORY.rst 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/HISTORY.rst 2021-04-02 20:17:17.000000000 +0000 @@ -3,6 +3,11 @@ Release History =============== +0.0.52 (2020-11-25) ++++++++++++++++++++ +* Changed logging verbosity when closing a stream +* Filter out default acl for files when using recursive acl operations + 0.0.51 (2020-10-15) +++++++++++++++++++ * Add more logging for zero byte reads to investigate root cause. diff -Nru azure-data-lake-store-python-0.0.51/tests/recordings/test_multithread/test_modify_acl_entries_recursive.yaml azure-data-lake-store-python-0.0.52/tests/recordings/test_multithread/test_modify_acl_entries_recursive.yaml --- azure-data-lake-store-python-0.0.51/tests/recordings/test_multithread/test_modify_acl_entries_recursive.yaml 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/tests/recordings/test_multithread/test_modify_acl_entries_recursive.yaml 2021-04-02 20:17:17.000000000 +0000 @@ -2,8569 +2,11803 @@ - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40a4f85a-e6d6-11e8-82dc-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e0165c3a-1c83-43d3-b56c-e315347c953b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40ac1f58-e6d6-11e8-b165-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv - [73353319-86d7-4143-a8a4-7705a493084d][2018-11-12T15:54:11.7186657-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [73353319-86d7-4143-a8a4-7705a493084d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d39d437e-93ea-11eb-95c9-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6382eb3f-93e7-44fe-8e1b-24ec9c1c0b20 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d3e0884a-93ea-11eb-bd1a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv + [6cb6f650-6eda-4e35-8e5b-56dd0dfe7eb2][2021-04-02T12:37:15.2543149-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6cb6f650-6eda-4e35-8e5b-56dd0dfe7eb2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d3f0b4e8-93ea-11eb-a3a1-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266&filesessionid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266&filesessionid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a86ce0f5-a350-4046-8702-dc034999dc70 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40b0e500-e6d6-11e8-8c0f-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5dff9c3c-2d51-426c-998e-6076d90fbf60&filesessionid=5dff9c3c-2d51-426c-998e-6076d90fbf60 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5dff9c3c-2d51-426c-998e-6076d90fbf60&filesessionid=5dff9c3c-2d51-426c-998e-6076d90fbf60'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ea9903ec-3063-4b19-9bfb-01726b016f0b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40cb2018-e6d6-11e8-8bce-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv - [c580b592-2586-4fc5-af25-95e7e946854d][2018-11-12T15:54:11.9217908-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c580b592-2586-4fc5-af25-95e7e946854d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d403bf86-93ea-11eb-8f21-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266&filesessionid=e0e95e9a-e8d2-43b0-b29e-39cf2b81c266 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 661a0d75-cc68-4159-bda0-7089b2fcad0e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d41acd8c-93ea-11eb-8d95-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv + [fbb67aba-6c38-4373-b534-86a96f9f68a4][2021-04-02T12:37:15.6448783-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fbb67aba-6c38-4373-b534-86a96f9f68a4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d42af05a-93ea-11eb-88c3-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=70d167e1-d1a5-44ca-9056-b4290d9e91ac&filesessionid=70d167e1-d1a5-44ca-9056-b4290d9e91ac + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=70d167e1-d1a5-44ca-9056-b4290d9e91ac&filesessionid=70d167e1-d1a5-44ca-9056-b4290d9e91ac + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 405d9345-d2f7-4998-9ee8-b0090bebea5e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40cd7f54-e6d6-11e8-8d37-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f956990c-a3d0-4e11-bada-9d6f11db2cb3&filesessionid=f956990c-a3d0-4e11-bada-9d6f11db2cb3 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f956990c-a3d0-4e11-bada-9d6f11db2cb3&filesessionid=f956990c-a3d0-4e11-bada-9d6f11db2cb3'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7d1e85fa-b517-48c3-a9eb-33d7bce97f7e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40e7ba06-e6d6-11e8-b89f-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt - [50bdde66-8ce3-4917-9b6d-f6e541d0aed4][2018-11-12T15:54:12.1092922-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [50bdde66-8ce3-4917-9b6d-f6e541d0aed4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d43e9fee-93ea-11eb-bae4-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=70d167e1-d1a5-44ca-9056-b4290d9e91ac&filesessionid=70d167e1-d1a5-44ca-9056-b4290d9e91ac + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2166d68d-e93c-4e91-8447-d6d5a43ac1ac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d453fca8-93ea-11eb-a0ef-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt + [03f09a70-2de2-4d95-bc85-0952bdf962ae][2021-04-02T12:37:16.0198519-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 03f09a70-2de2-4d95-bc85-0952bdf962ae + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d464503a-93ea-11eb-bc68-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469&filesessionid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:15 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469&filesessionid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5372d152-cab1-4903-bf6b-5915615a1e59 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40ec8078-e6d6-11e8-acc6-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=214a983e-2881-42ab-8502-5ddb8a91c612&filesessionid=214a983e-2881-42ab-8502-5ddb8a91c612 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=214a983e-2881-42ab-8502-5ddb8a91c612&filesessionid=214a983e-2881-42ab-8502-5ddb8a91c612'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f0c492a6-89eb-46fb-9861-9bc60c4fcf17] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4106b994-e6d6-11e8-981e-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9a0a3623-7193-4e09-b5cf-0101333d46cd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [410b7d4a-e6d6-11e8-b9d2-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv - [95497824-ccb3-4663-995e-ad83c3d7734f][2018-11-12T15:54:12.3436669-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [95497824-ccb3-4663-995e-ad83c3d7734f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4773c22-93ea-11eb-be56-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469&filesessionid=6c8e6c1a-8501-4aa4-b553-ee5d9d4a0469 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 72627d82-fd09-498b-aed9-5aff78974aa2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d48d2028-93ea-11eb-8332-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ff1a5d0d-53a5-4b45-bd0c-ff2946916a59 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d49eaa26-93ea-11eb-9e19-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/x.csv + [a33c7c5d-8d5f-4dc4-92bc-025a3ec41c42][2021-04-02T12:37:16.5198413-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a33c7c5d-8d5f-4dc4-92bc-025a3ec41c42 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4afe83a-93ea-11eb-83f2-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=66d66044-2bc6-46bc-b3e2-0b0f0303e969&filesessionid=66d66044-2bc6-46bc-b3e2-0b0f0303e969 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=66d66044-2bc6-46bc-b3e2-0b0f0303e969&filesessionid=66d66044-2bc6-46bc-b3e2-0b0f0303e969 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 35fcca70-a6c9-412f-a416-e4a0fdbae9e0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [411041ca-e6d6-11e8-9fbb-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=598b4b01-d68e-4afd-9384-f3e5a9ea6a0d&filesessionid=598b4b01-d68e-4afd-9384-f3e5a9ea6a0d - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=598b4b01-d68e-4afd-9384-f3e5a9ea6a0d&filesessionid=598b4b01-d68e-4afd-9384-f3e5a9ea6a0d'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4765e7dc-41be-4500-b130-90d139c741c7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [412a7c0c-e6d6-11e8-9776-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv - [1b05e257-9a8b-48d2-9e0c-f8e0c3007de5][2018-11-12T15:54:12.5467929-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1b05e257-9a8b-48d2-9e0c-f8e0c3007de5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4c2c068-93ea-11eb-a6be-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=66d66044-2bc6-46bc-b3e2-0b0f0303e969&filesessionid=66d66044-2bc6-46bc-b3e2-0b0f0303e969 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 01a8a05c-62d0-4a24-b09a-8510ef80586b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4d8b990-93ea-11eb-909c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/y.csv + [d9f1cfd3-1f19-4c72-b0e2-e8b24ea92adf][2021-04-02T12:37:16.8947888-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d9f1cfd3-1f19-4c72-b0e2-e8b24ea92adf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4e9341c-93ea-11eb-9025-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=c327edc2-dc8d-420e-ad67-6fd932283a12&filesessionid=c327edc2-dc8d-420e-ad67-6fd932283a12 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=c327edc2-dc8d-420e-ad67-6fd932283a12&filesessionid=c327edc2-dc8d-420e-ad67-6fd932283a12 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 16f263c7-be6e-4c0a-b32a-b50cb94ed1ce + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [412f4094-e6d6-11e8-af38-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c704d4eb-3a93-48c2-b7d5-4336ca1cd3e3&filesessionid=c704d4eb-3a93-48c2-b7d5-4336ca1cd3e3 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c704d4eb-3a93-48c2-b7d5-4336ca1cd3e3&filesessionid=c704d4eb-3a93-48c2-b7d5-4336ca1cd3e3'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [730dc28b-3607-437e-bf76-a0b48ad7e024] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [413ff280-e6d6-11e8-9c82-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt - [c7aea82b-923b-46f9-ad3b-13d0ed219ec9][2018-11-12T15:54:12.6874187-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c7aea82b-923b-46f9-ad3b-13d0ed219ec9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4fa4d46-93ea-11eb-a162-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=c327edc2-dc8d-420e-ad67-6fd932283a12&filesessionid=c327edc2-dc8d-420e-ad67-6fd932283a12 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6e6daf99-f1ed-4351-b577-1e5440f9a6cf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d50f32ca-93ea-11eb-9ae0-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/z.txt + [c4ef8e0a-ea0d-42a6-b447-0d351a6701d5][2021-04-02T12:37:17.2385401-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c4ef8e0a-ea0d-42a6-b447-0d351a6701d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d51f115e-93ea-11eb-8a97-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=2b614263-42ac-467d-a858-57d1a941339a&filesessionid=2b614263-42ac-467d-a858-57d1a941339a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=2b614263-42ac-467d-a858-57d1a941339a&filesessionid=2b614263-42ac-467d-a858-57d1a941339a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c55f7bd9-7886-4210-af35-2f8c976f4b2d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4144b59e-e6d6-11e8-bebd-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=56b99b11-7300-487e-9001-fed4f2dc82ac&filesessionid=56b99b11-7300-487e-9001-fed4f2dc82ac - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=56b99b11-7300-487e-9001-fed4f2dc82ac&filesessionid=56b99b11-7300-487e-9001-fed4f2dc82ac'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bf609818-9184-424d-ae99-72ce58d115a3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [415a2b74-e6d6-11e8-8fdb-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cd3c3854-1c2c-46d2-9470-19b5fa0e360e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4163b5f8-e6d6-11e8-9591-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv - [b5ae2775-ac5b-493c-81bc-16dfdad794d3][2018-11-12T15:54:12.9217938-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b5ae2775-ac5b-493c-81bc-16dfdad794d3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d53139c8-93ea-11eb-9e45-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=2b614263-42ac-467d-a858-57d1a941339a&filesessionid=2b614263-42ac-467d-a858-57d1a941339a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f34b4355-0a1b-4b0b-9a59-e5d74a3c1fc7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d546e49c-93ea-11eb-94b4-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b76807bd-3052-4de6-8699-dc4e3aceaeac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5584c40-93ea-11eb-be8c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/x.csv + [e7bc731c-0b97-4816-8d06-ea08c40ed812][2021-04-02T12:37:17.7228813-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e7bc731c-0b97-4816-8d06-ea08c40ed812 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d569674a-93ea-11eb-a1db-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35&filesessionid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35&filesessionid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 451f37d9-7fa4-4912-9474-01ff5fbb02f6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4166178c-e6d6-11e8-8122-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=da1db5c1-7568-42b3-95b3-63069f3e8641&filesessionid=da1db5c1-7568-42b3-95b3-63069f3e8641 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=da1db5c1-7568-42b3-95b3-63069f3e8641&filesessionid=da1db5c1-7568-42b3-95b3-63069f3e8641'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5607d605-7b7c-47fa-b310-b63402d344d5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [417dedae-e6d6-11e8-83ab-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv - [f0bfdf94-0701-4d48-a580-26ad46a1d1a0][2018-11-12T15:54:13.0936697-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f0bfdf94-0701-4d48-a580-26ad46a1d1a0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d57c71f6-93ea-11eb-beb4-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35&filesessionid=6ce650a5-0c5d-48fe-8891-1fa476cf9f35 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c00defa5-5c7f-4b7e-b404-51b6c592a5ad + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d59272fe-93ea-11eb-9954-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/y.csv + [ba794961-2a21-4ce8-952d-dacf6b6df0eb][2021-04-02T12:37:18.1134519-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ba794961-2a21-4ce8-952d-dacf6b6df0eb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5a404e8-93ea-11eb-a0a5-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=bb068680-ed3a-4c7c-9f4d-970790f120b8&filesessionid=bb068680-ed3a-4c7c-9f4d-970790f120b8 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=bb068680-ed3a-4c7c-9f4d-970790f120b8&filesessionid=bb068680-ed3a-4c7c-9f4d-970790f120b8 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f81e05fe-0334-450d-b1cc-00428066b69b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41805194-e6d6-11e8-908a-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=afcdf600-d312-4100-8f22-1ebc4eda805b&filesessionid=afcdf600-d312-4100-8f22-1ebc4eda805b - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=afcdf600-d312-4100-8f22-1ebc4eda805b&filesessionid=afcdf600-d312-4100-8f22-1ebc4eda805b'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [efdb5118-0d36-454a-9143-1e2f669db47f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41910054-e6d6-11e8-98c9-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt - [2d9d39d0-ca2e-4381-99cf-70565fe9bb27][2018-11-12T15:54:13.2342949-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d9d39d0-ca2e-4381-99cf-70565fe9bb27] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5b62d66-93ea-11eb-92ff-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=bb068680-ed3a-4c7c-9f4d-970790f120b8&filesessionid=bb068680-ed3a-4c7c-9f4d-970790f120b8 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 70d58bf4-f30c-4f97-8586-a823919b6590 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5cb882c-93ea-11eb-a7e6-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/z.txt + [4ecce358-1583-43e6-96b1-39de46792cec][2021-04-02T12:37:18.4884262-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4ecce358-1583-43e6-96b1-39de46792cec + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5dd1466-93ea-11eb-a4d8-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=3e033f54-6d6c-493b-8c0d-d1f7b4974200&filesessionid=3e033f54-6d6c-493b-8c0d-d1f7b4974200 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=3e033f54-6d6c-493b-8c0d-d1f7b4974200&filesessionid=3e033f54-6d6c-493b-8c0d-d1f7b4974200 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 579acad7-1c5e-4be7-b58c-5fda2858215b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4195c61c-e6d6-11e8-80be-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=17d38237-efe5-4409-9754-4c3b6048f2d9&filesessionid=17d38237-efe5-4409-9754-4c3b6048f2d9 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=17d38237-efe5-4409-9754-4c3b6048f2d9&filesessionid=17d38237-efe5-4409-9754-4c3b6048f2d9'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cf21d58a-13aa-44ba-807a-13203aa4dfeb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41ab3b3a-e6d6-11e8-a4f4-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/empty?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f73d8096-be1c-4873-b7fc-2b54ae74c0c5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41b262b6-e6d6-11e8-81fa-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [378f9df5-b746-4ab7-8195-b77f7520fed1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41b4c486-e6d6-11e8-9d6e-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt - [71f6a715-2c80-4bab-b3e8-4ade1738ec40][2018-11-12T15:54:13.4530469-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [71f6a715-2c80-4bab-b3e8-4ade1738ec40] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d5f0a2cc-93ea-11eb-ad1a-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=3e033f54-6d6c-493b-8c0d-d1f7b4974200&filesessionid=3e033f54-6d6c-493b-8c0d-d1f7b4974200 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f3319a42-6d6e-4779-b084-8df644531c8c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d606c2f6-93ea-11eb-a286-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3243ae17-8c2e-4cf8-9f85-c257101df7f0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d61714b6-93ea-11eb-8de9-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 90e3ed66-f9ca-4599-9e7a-54462c53cb30 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6291622-93ea-11eb-9557-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single/single.txt + [b13f74c4-f6ff-4514-99a0-a586312db4b7][2021-04-02T12:37:19.0977854-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b13f74c4-f6ff-4514-99a0-a586312db4b7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d63a05f4-93ea-11eb-a51a-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=dcbe61a7-e1e2-487c-9402-6f3742ab601c&filesessionid=dcbe61a7-e1e2-487c-9402-6f3742ab601c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:18 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=dcbe61a7-e1e2-487c-9402-6f3742ab601c&filesessionid=dcbe61a7-e1e2-487c-9402-6f3742ab601c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c8b69895-cc8e-44eb-8b60-66e667e723f0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41b989f6-e6d6-11e8-b20e-000d3a02e7d7.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=08b35fef-9bf5-43ce-915d-d9bb10573158&filesessionid=08b35fef-9bf5-43ce-915d-d9bb10573158 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=08b35fef-9bf5-43ce-915d-d9bb10573158&filesessionid=08b35fef-9bf5-43ce-915d-d9bb10573158'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2eaa2ffd-8321-4c81-84a3-ffd43c7d5860] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41c7d850-e6d6-11e8-94c5-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066852328,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bd71d3fc-d40a-49a8-bd5a-2faa3802d578] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41cc9c0a-e6d6-11e8-b02f-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066852329,"modificationTime":1542066852759,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066852889,"modificationTime":1542066853286,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066853413,"modificationTime":1542066853413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066853444,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0f11185b-4d96-44d6-a71e-cfa3e7369449] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41cefe5e-e6d6-11e8-867a-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066852395,"modificationTime":1542066852468,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066852618,"modificationTime":1542066852640,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852730,"modificationTime":1542066852812,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9611c215-525a-4afe-84ff-2068a37f1e5c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41d3c30a-e6d6-11e8-9116-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066852955,"modificationTime":1542066852999,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066853123,"modificationTime":1542066853171,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066853266,"modificationTime":1542066853312,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4accfea6-dd06-47b2-970d-0d3e58a961ef] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41d88852-e6d6-11e8-bdb7-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/empty?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['34'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [92a7014b-14ed-470e-b4be-97ae63e9944a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41daea0c-e6d6-11e8-908e-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066853444,"modificationTime":1542066853509,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['305'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [19d80470-8faa-4bc3-ae9f-7bc79823f6e5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41dfaff8-e6d6-11e8-a584-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066853499,"modificationTime":1542066853531,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3d5ec2c5-3191-4771-ae4b-1e5cb627086a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42927f8a-e6d6-11e8-bf1f-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066852328,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c08588fb-e751-4b1c-951b-c685cd2863dc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [429743f6-e6d6-11e8-baf8-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066852329,"modificationTime":1542066852759,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066852889,"modificationTime":1542066853286,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066853413,"modificationTime":1542066853413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066853444,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3f14dad1-41db-4fba-9da7-5ac0e1f15287] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42aa5782-e6d6-11e8-9110-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066853499,"modificationTime":1542066853531,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1c2ec729-85e9-466c-8a39-ae414d6e9348] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42a0cce4-e6d6-11e8-912d-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066852395,"modificationTime":1542066852468,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066852618,"modificationTime":1542066852640,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852730,"modificationTime":1542066852812,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [891a2b69-ba01-45e0-a1a9-d767a5f9c18d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42ce1898-e6d6-11e8-910e-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7312905c-aa5e-42ed-8388-f24c010e54a6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42f44066-e6d6-11e8-bcaf-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6cbd94a2-6d2b-4fa0-bd20-b94732e59f81] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [42f90562-e6d6-11e8-b12f-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [10b527f2-2452-4e11-a6cf-950e9a2fda46] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4304eff6-e6d6-11e8-a3dd-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [20165671-d72b-4687-8c35-ff0476be9396] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4309b60c-e6d6-11e8-b7f7-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [55e7c52b-849d-467c-8e17-4e9100a8839a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [430e7846-e6d6-11e8-836c-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c56619f7-1070-4466-af76-3137d41ecf16] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4315a026-e6d6-11e8-afb1-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e02ae0b8-45f4-4857-bf20-9ae7a0264a77] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [431cc8b0-e6d6-11e8-b546-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [33de383c-a9cc-48ff-9b71-a7d00d08ca79] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [432d774a-e6d6-11e8-b2ac-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [08f2f8e2-06bf-4161-ba67-c3023dfd80e4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4337025c-e6d6-11e8-a502-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6d657686-4b7b-4810-8313-a39a1b74f445] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [433bc8b6-e6d6-11e8-a855-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6d69ba7a-0123-4c82-94f8-e5cf873ccfa6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4342eef8-e6d6-11e8-8d58-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bfd556fe-fcc9-400d-aab7-cd12de63f37a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4347b106-e6d6-11e8-becb-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8bbbaa8f-c5d6-4147-b5c4-133b5302093d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [43513bb4-e6d6-11e8-8b97-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f531d2c0-e531-4d12-a5b5-10dabcef167b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44066cde-e6d6-11e8-89f6-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066852328,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:16 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cc662e68-bb6c-4612-91d5-8ec87457a07d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44492ed0-e6d6-11e8-b4d9-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [70b3a111-2227-4d9b-99ec-394035afafea] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [444df4c8-e6d6-11e8-8e10-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [99893d66-fff9-4dd8-a260-6a6d61267f19] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4450578a-e6d6-11e8-a930-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7a3b75d6-982b-4942-a2e4-b9c78c97a474] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4452b84a-e6d6-11e8-a853-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1c0250ca-2f52-450c-b24e-f62e2e81e180] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44577dee-e6d6-11e8-b92b-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [00520a47-1113-40ce-8aff-d9bb4e020352] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4459e1e2-e6d6-11e8-ae92-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7f248023-fc17-4183-95f1-28d13dd9d9df] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [445ea626-e6d6-11e8-90bc-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [912e8aa2-aa72-40cf-9f15-bec4c6cf7e87] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44610800-e6d6-11e8-824e-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b1eeea66-6c60-4d2b-983f-ab96495b87e9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [446369a8-e6d6-11e8-94ed-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e8654b59-6a93-4153-a75b-f112ef930330] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44682f68-e6d6-11e8-9c5e-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f256aa89-a27a-49a0-b080-7f9dcdccbea4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [446a9134-e6d6-11e8-93d1-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [70d1cc11-b6f7-443a-a0fe-bb8f84830509] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [446f56ca-e6d6-11e8-9832-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f993ed54-7c4d-4860-8b64-18c33d85917b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4471b68a-e6d6-11e8-a6a4-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [83378a85-c684-43a7-b71b-a8ce5111be0c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44767d18-e6d6-11e8-88c9-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [03021a1d-a412-4650-bd49-d8cef8a9af06] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4478ded2-e6d6-11e8-9f05-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066852328,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6092b2e2-1b37-4f66-9139-27214e12ca3f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [447da386-e6d6-11e8-bd03-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1542066852328,"modificationTime":1542066853444,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [58d15090-63f2-4c50-877a-c4f830c1dd4a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44826810-e6d6-11e8-98e1-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d64e030a-93ea-11eb-8007-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=dcbe61a7-e1e2-487c-9402-6f3742ab601c&filesessionid=dcbe61a7-e1e2-487c-9402-6f3742ab601c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b5450cc1-a6e3-485a-ad31-fcc5ec77b78b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d664c1a6-93ea-11eb-a3df-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392236406,"modificationTime":1617392238991,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235386,"modificationTime":1617392235504,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235766,"modificationTime":1617392235894,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 25b658eb-a54a-441d-ba30-03f0079f3a9d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d676ea4c-93ea-11eb-aae3-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392236406,"modificationTime":1617392237366,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392237623,"modificationTime":1617392238621,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392238874,"modificationTime":1617392238874,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392238991,"modificationTime":1617392238991,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e6fbe7aa-0dab-49e3-87a9-247b4aa393c5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6887612-93ea-11eb-b507-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392236638,"modificationTime":1617392236754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392237004,"modificationTime":1617392237113,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392237363,"modificationTime":1617392237488,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 00d119fd-5b10-43c4-a63e-0f520a213cb5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d69a241c-93ea-11eb-8c52-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392237855,"modificationTime":1617392237972,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392238235,"modificationTime":1617392238347,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392238618,"modificationTime":1617392238738,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c747cddf-791a-49fd-959b-ac5909ef589a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6accc00-93ea-11eb-8332-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 553e2a00-59a6-4172-a396-c407b10a3eba + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6be7f54-93ea-11eb-b7c1-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392238991,"modificationTime":1617392239233,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3b0f887e-cb7d-4bcd-a807-9377e421baa1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6d00a3e-93ea-11eb-a9b4-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392239230,"modificationTime":1617392239363,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b3711992-50d0-4681-8bcc-d6c60f986f85 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6e1df40-93ea-11eb-8faa-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392234708,"modificationTime":1617392236406,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7935d891-90df-41b1-bd1c-1c86315189cb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6f33cec-93ea-11eb-a458-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=MODIFYACLENTRIES&api-version=2018-09-01&aclSpec=default%3Auser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A---%2Cuser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A--- + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 94283252-ceae-4b07-9457-e1261f628f73 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7059e98-93ea-11eb-9548-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dd683c28-3bdc-46ef-b63a-23324022c9c4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d71814b6-93ea-11eb-898e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392236406,"modificationTime":1617392238991,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235386,"modificationTime":1617392235504,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235766,"modificationTime":1617392235894,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3f597aa7-ad7d-47a8-b046-f390ccf4e6fb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d72a04d2-93ea-11eb-b7ae-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392236406,"modificationTime":1617392238991,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7af45510-0976-49ed-9851-6977bd314a46 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d73bec62-93ea-11eb-a1f6-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2338cd5d-51e2-4bdc-892a-ebc21e177381] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44872ec8-e6d6-11e8-b8ef-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [06e86236-4c92-483e-9597-239cc98eec03] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [448bf0c6-e6d6-11e8-81d2-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066851760,"modificationTime":1542066851859,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dfd2b947-2888-4fce-a85d-74961da6687f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [448e53d8-e6d6-11e8-9376-000d3a02e7d7.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 720d7925-f09d-40e6-b7da-06ad929d30fb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d74ffc40-93ea-11eb-8ba7-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235386,"modificationTime":1617392235504,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235766,"modificationTime":1617392235894,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 999924e3-b5d9-49c7-bfb9-99f67198f779 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7637b52-93ea-11eb-90b9-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392235386,"modificationTime":1617392235504,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 94f3833c-5ddd-46a1-8f0a-ae2e3ec8e1c4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7741d34-93ea-11eb-b2c0-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [71de6e76-7ccd-4aef-9d68-14031adaeba3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44992a92-e6d6-11e8-a907-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['621'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ab95921b-646d-4247-93b0-7dbddb7f1308] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44a20522-e6d6-11e8-ab26-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066851961,"modificationTime":1542066852031,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ad070180-86e7-4420-a1a5-7026a3014c0e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44a6c8f6-e6d6-11e8-9ed3-000d3a02e7d7.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 85b80914-1fad-4f42-860b-d32f07cf4403 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d787de64-93ea-11eb-87ff-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392235766,"modificationTime":1617392235894,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 95582f4f-3d32-43be-acdb-7ebfd7b55283 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d79ab9ae-93ea-11eb-b6b1-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392235766,"modificationTime":1617392235894,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 655b3d1f-3720-464e-9460-c0391363918c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7ab4734-93ea-11eb-949f-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a7966a09-7811-4f7a-b47f-81cc0ffefdab] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44b2b692-e6d6-11e8-b052-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5756ce24-558c-4988-95b9-1397f48326b2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44b517b8-e6d6-11e8-a0ba-000d3a02e7d7.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066852151,"modificationTime":1542066852234,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:17 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [aeefb741-5bc9-4edd-a915-785bbd507505] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [44b9dd82-e6d6-11e8-b565-000d3a02e7d7.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e906b678-9e57-4b3e-81ac-cf53f808541b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7c07bda-93ea-11eb-bc54-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f1bcca9d-90c9-4f1d-aaa5-fb6b1b2efb9c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7d279ac-93ea-11eb-9752-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392236144,"modificationTime":1617392236269,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e71ed22f-c320-40ab-a14d-1bd341275be5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7e31ba8-93ea-11eb-a78e-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir6d7a22cf-905f-4249-8807-706fa561dec9/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:18 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [75e7ee6c-00f2-46de-9fda-b7e08ebf6f70] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10759fd2-25b8-11e9-b453-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e75330cc-3059-4f6b-914c-c548578216e6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10b1e110-25b8-11e9-9009-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv - [4b5c0ebb-894e-428c-bfed-4dfee4acc461][2019-01-31T16:26:49.6485576-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4b5c0ebb-894e-428c-bfed-4dfee4acc461] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 81da1058-a7c4-4682-88cb-f321d7a3aed5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ebeb8464-93ea-11eb-9031-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:54 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2f5e2eed-2160-4605-ac54-4be8d04c2b90 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec29a078-93ea-11eb-9784-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv + [317ba2f1-183c-470a-b07c-404f99c5f3c3][2021-04-02T12:37:56.0206870-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 317ba2f1-183c-470a-b07c-404f99c5f3c3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec3b9d3e-93ea-11eb-b3de-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=74ee16e8-f5d8-469a-8964-b363e32faaeb&filesessionid=74ee16e8-f5d8-469a-8964-b363e32faaeb + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=74ee16e8-f5d8-469a-8964-b363e32faaeb&filesessionid=74ee16e8-f5d8-469a-8964-b363e32faaeb + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 58f26f07-ba62-49f4-b701-fda3b9f8516b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10c3084a-25b8-11e9-bb74-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=55f9753f-a9c3-4d96-a5b7-29ab0efeac76&filesessionid=55f9753f-a9c3-4d96-a5b7-29ab0efeac76 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:49 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=55f9753f-a9c3-4d96-a5b7-29ab0efeac76&filesessionid=55f9753f-a9c3-4d96-a5b7-29ab0efeac76'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9d5d827c-86de-4492-880b-9943821b9b34] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10e693d2-25b8-11e9-b8f9-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv - [b74b6503-7490-4f72-b306-c9e151c79a30][2019-01-31T16:26:49.9923123-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b74b6503-7490-4f72-b306-c9e151c79a30] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec51c6fa-93ea-11eb-a444-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=74ee16e8-f5d8-469a-8964-b363e32faaeb&filesessionid=74ee16e8-f5d8-469a-8964-b363e32faaeb + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7a8c684a-e456-4858-a14e-2d6c00ed1525 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec7119be-93ea-11eb-b491-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv + [b72bebde-2739-4e91-b715-ed24c5679bc2][2021-04-02T12:37:56.4894001-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b72bebde-2739-4e91-b715-ed24c5679bc2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec82a124-93ea-11eb-9041-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1caab5d4-f44d-4eca-b70f-59994a7a178a&filesessionid=1caab5d4-f44d-4eca-b70f-59994a7a178a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1caab5d4-f44d-4eca-b70f-59994a7a178a&filesessionid=1caab5d4-f44d-4eca-b70f-59994a7a178a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 84eba8d5-56db-4de4-8d65-dc34d0f32150 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10f7b188-25b8-11e9-ae75-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=dcbbef2e-5df4-4e21-9b5b-4c9fe0204322&filesessionid=dcbbef2e-5df4-4e21-9b5b-4c9fe0204322 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=dcbbef2e-5df4-4e21-9b5b-4c9fe0204322&filesessionid=dcbbef2e-5df4-4e21-9b5b-4c9fe0204322'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [90877be1-7fa2-4e82-97d6-7b69cbd64b71] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1122cf36-25b8-11e9-b68a-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt - [7b7e7096-04f4-487b-962a-5a852ce7e20e][2019-01-31T16:26:50.3829431-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7b7e7096-04f4-487b-962a-5a852ce7e20e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ec97139e-93ea-11eb-a83e-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=1caab5d4-f44d-4eca-b70f-59994a7a178a&filesessionid=1caab5d4-f44d-4eca-b70f-59994a7a178a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a4ba4bee-0670-462d-a10c-be5b685adc70 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ecae1e0c-93ea-11eb-b8f6-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt + [d3fea08b-a184-4979-8715-f606e674b62d][2021-04-02T12:37:56.8800005-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d3fea08b-a184-4979-8715-f606e674b62d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ecbfa9e4-93ea-11eb-a9e4-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=41ef8594-78f0-42ef-8147-7721b49f1f41&filesessionid=41ef8594-78f0-42ef-8147-7721b49f1f41 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:56 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=41ef8594-78f0-42ef-8147-7721b49f1f41&filesessionid=41ef8594-78f0-42ef-8147-7721b49f1f41 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 994c4a7b-8a2c-4435-9a10-e45665718f53 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1133eeca-25b8-11e9-a590-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a2118c48-d7ed-42ec-8fbc-40f4b921151a&filesessionid=a2118c48-d7ed-42ec-8fbc-40f4b921151a - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a2118c48-d7ed-42ec-8fbc-40f4b921151a&filesessionid=a2118c48-d7ed-42ec-8fbc-40f4b921151a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7101d2c4-c5a0-4a15-8468-9c7c01462b12] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1153cf0c-25b8-11e9-b961-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ac5c395c-dae5-4971-99ff-d3eba6b5e1eb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11658548-25b8-11e9-abac-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv - [35c5e22c-c6e0-49f5-9657-60d37acc588c][2019-01-31T16:26:50.8204486-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [35c5e22c-c6e0-49f5-9657-60d37acc588c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ecd44348-93ea-11eb-9e53-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=41ef8594-78f0-42ef-8147-7721b49f1f41&filesessionid=41ef8594-78f0-42ef-8147-7721b49f1f41 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65e17940-046c-420e-9eef-75232f63afb9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ecedede4-93ea-11eb-9072-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2e03dbce-5fe8-46b9-971f-b31486733f93 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ed013806-93ea-11eb-8e19-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/x.csv + [94b58783-f24d-485f-8536-7a534311f1fa][2021-04-02T12:37:57.4268122-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 94b58783-f24d-485f-8536-7a534311f1fa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ed13b61e-93ea-11eb-bdf0-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=d9884b6b-bb43-4864-ac69-dacc55185209&filesessionid=d9884b6b-bb43-4864-ac69-dacc55185209 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:57 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=d9884b6b-bb43-4864-ac69-dacc55185209&filesessionid=d9884b6b-bb43-4864-ac69-dacc55185209 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e90bd213-d185-4884-9935-547c1c5fbe51 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1176ca1c-25b8-11e9-b09b-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c7993386-b8f2-4664-a94d-b43cbb44604e&filesessionid=c7993386-b8f2-4664-a94d-b43cbb44604e - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c7993386-b8f2-4664-a94d-b43cbb44604e&filesessionid=c7993386-b8f2-4664-a94d-b43cbb44604e'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3a178b05-6d32-4325-94c4-729cb3ffc75a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [119482c6-25b8-11e9-b3ce-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv - [60060bdf-93b8-423f-8c4b-cc54f6ecbcbc][2019-01-31T16:26:51.1329516-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [60060bdf-93b8-423f-8c4b-cc54f6ecbcbc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - edd85b1e-93ea-11eb-82a0-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=d9884b6b-bb43-4864-ac69-dacc55185209&filesessionid=d9884b6b-bb43-4864-ac69-dacc55185209 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:57 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65e20782-2390-43e1-85af-3ebe8c920b48 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - edf1b294-93ea-11eb-a0c9-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/y.csv + [0de3e554-c10b-4389-b587-7ed12bb57d94][2021-04-02T12:37:59.0204627-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0de3e554-c10b-4389-b587-7ed12bb57d94 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee04c57a-93ea-11eb-81e0-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6618fe4d-26e9-4629-85d1-a75026f0c606&filesessionid=6618fe4d-26e9-4629-85d1-a75026f0c606 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6618fe4d-26e9-4629-85d1-a75026f0c606&filesessionid=6618fe4d-26e9-4629-85d1-a75026f0c606 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4144571b-d321-45bf-9539-e031900478cf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11a5deb4-25b8-11e9-a0f9-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3bb4c593-deb2-4164-9872-7c718d86c98f&filesessionid=3bb4c593-deb2-4164-9872-7c718d86c98f - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3bb4c593-deb2-4164-9872-7c718d86c98f&filesessionid=3bb4c593-deb2-4164-9872-7c718d86c98f'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [614343a7-b961-457c-9e12-bd2a00caa0c7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11c2187a-25b8-11e9-9d9b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt - [6fc09c62-cf4f-41f7-b8b1-4b40632677ad][2019-01-31T16:26:51.4298315-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6fc09c62-cf4f-41f7-b8b1-4b40632677ad] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee19f7a4-93ea-11eb-bd8b-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=6618fe4d-26e9-4629-85d1-a75026f0c606&filesessionid=6618fe4d-26e9-4629-85d1-a75026f0c606 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 20c71834-e866-4b8f-b48c-401bb8e5f1b9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee31c458-93ea-11eb-b14a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/z.txt + [47d3c187-d896-4baf-8055-d1e214090b44][2021-04-02T12:37:59.4266800-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 47d3c187-d896-4baf-8055-d1e214090b44 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee43d9ba-93ea-11eb-a145-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f&filesessionid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f&filesessionid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ee74aea4-6d59-4cca-93db-beab1d2e90cb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11d335d2-25b8-11e9-94b7-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ec88779-0be8-4b67-a825-0f5b4f264105&filesessionid=6ec88779-0be8-4b67-a825-0f5b4f264105 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ec88779-0be8-4b67-a825-0f5b4f264105&filesessionid=6ec88779-0be8-4b67-a825-0f5b4f264105'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6454383d-3278-4423-956b-17494e13115d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11f1c7a6-25b8-11e9-aeb3-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e985f234-5afa-4e19-8a77-4c51337028fd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12037840-25b8-11e9-9227-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv - [451942a4-ca34-4ba4-916c-864743528fd7][2019-01-31T16:26:51.8517136-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [451942a4-ca34-4ba4-916c-864743528fd7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee589ca4-93ea-11eb-9837-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f&filesessionid=e3816cf3-a3c5-4a51-a0ba-516af9f5089f + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e007ae8f-59bd-453b-8c36-232f29d0831f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee70eccc-93ea-11eb-9c88-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6eef9995-2665-41e2-90a0-2f60d6dba79f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee84b882-93ea-11eb-b21c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/x.csv + [e725296b-a5b9-44fc-8d38-2e170af658e5][2021-04-02T12:37:59.9734961-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:37:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e725296b-a5b9-44fc-8d38-2e170af658e5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ee9707f8-93ea-11eb-b97e-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1b89d124-f56e-4301-85cf-06e71ea9ecb3&filesessionid=1b89d124-f56e-4301-85cf-06e71ea9ecb3 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1b89d124-f56e-4301-85cf-06e71ea9ecb3&filesessionid=1b89d124-f56e-4301-85cf-06e71ea9ecb3 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 47a0cd0e-d539-4c83-a5e2-b1a72ca96ef6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1214aaf6-25b8-11e9-bf15-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=fc00a0a0-0559-4646-8883-56fa8a22114c&filesessionid=fc00a0a0-0559-4646-8883-56fa8a22114c - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=fc00a0a0-0559-4646-8883-56fa8a22114c&filesessionid=fc00a0a0-0559-4646-8883-56fa8a22114c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fa3c61e7-3b57-4998-9f78-0e9690465330] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12339914-25b8-11e9-84b9-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv - [8b2d7232-a9a3-4294-aad2-bb2825fb46ca][2019-01-31T16:26:52.1798422-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8b2d7232-a9a3-4294-aad2-bb2825fb46ca] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - eeac1a34-93ea-11eb-8c42-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=1b89d124-f56e-4301-85cf-06e71ea9ecb3&filesessionid=1b89d124-f56e-4301-85cf-06e71ea9ecb3 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 35e23d09-5d61-4cab-bd78-1f2c1a2f5f79 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - eec349b0-93ea-11eb-868e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/y.csv + [29cfdae2-e6ad-49d5-a13d-910d871c5ca9][2021-04-02T12:38:00.3640920-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 29cfdae2-e6ad-49d5-a13d-910d871c5ca9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - eed3a1da-93ea-11eb-b1c6-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=343d7afe-95f0-4482-b773-ae23482b752d&filesessionid=343d7afe-95f0-4482-b773-ae23482b752d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=343d7afe-95f0-4482-b773-ae23482b752d&filesessionid=343d7afe-95f0-4482-b773-ae23482b752d + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 777b9a08-d676-4b78-b048-2cb5eb9204da + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1244f466-25b8-11e9-8dc2-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=87ff8834-816f-4b07-8c8d-c23a30717e0c&filesessionid=87ff8834-816f-4b07-8c8d-c23a30717e0c - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=87ff8834-816f-4b07-8c8d-c23a30717e0c&filesessionid=87ff8834-816f-4b07-8c8d-c23a30717e0c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1a560add-f650-4e43-bfcf-7a74db05ad4a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [126333a8-25b8-11e9-a58b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt - [9b12e8bf-d835-44c7-a813-a416e73af37a][2019-01-31T16:26:52.4923474-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9b12e8bf-d835-44c7-a813-a416e73af37a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - eee961c6-93ea-11eb-8bd4-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=343d7afe-95f0-4482-b773-ae23482b752d&filesessionid=343d7afe-95f0-4482-b773-ae23482b752d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 551aa79f-0e3a-401b-9d53-304b52c10b2a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef02bfc0-93ea-11eb-9259-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/z.txt + [ae72aa7d-326c-4a76-8890-f8a3560ec134][2021-04-02T12:38:00.8171814-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ae72aa7d-326c-4a76-8890-f8a3560ec134 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef173bae-93ea-11eb-90eb-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2&filesessionid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:00 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2&filesessionid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 045e0703-8d6d-4571-8012-d3bbead2fd38 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1274957a-25b8-11e9-a2e5-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=78ec26ca-12c3-4725-a31e-aad9b3baee5a&filesessionid=78ec26ca-12c3-4725-a31e-aad9b3baee5a - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=78ec26ca-12c3-4725-a31e-aad9b3baee5a&filesessionid=78ec26ca-12c3-4725-a31e-aad9b3baee5a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f77f24a6-ae5a-4e87-9bcb-d1fae86888bd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [129489a6-25b8-11e9-a274-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/empty?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5f7fef74-d921-4e57-bab1-a9543846a6a2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12a66e5e-25b8-11e9-a20d-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0a92d7b2-452d-45ca-81da-d9b1b105027c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12b84be8-25b8-11e9-8064-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt - [b01bea27-8100-433d-939d-fdf5e0faddec][2019-01-31T16:26:53.0392294-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b01bea27-8100-433d-939d-fdf5e0faddec] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef2c0af4-93ea-11eb-ae2b-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2&filesessionid=8d99efbf-6aaf-41b0-90e2-35d05eea5af2 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 898f769f-960a-4996-8cfa-0fab0561eb33 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef43b1e4-93ea-11eb-acee-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 92e0e5f2-d439-418a-a310-b9e4d622123d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef56931c-93ea-11eb-8f22-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e6b8812b-436e-4699-9df3-291bdccb6516 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef694758-93ea-11eb-8b7c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single/single.txt + [0cd25ac6-5b86-4b63-9ef2-19458535e098][2021-04-02T12:38:01.4733834-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0cd25ac6-5b86-4b63-9ef2-19458535e098 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef7c1c88-93ea-11eb-9b94-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b&filesessionid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b&filesessionid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 424833c2-3213-4304-96ab-a2a180b1ba28 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12c9c780-25b8-11e9-bf04-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ecc29cd-a4e2-487d-9cfa-842648a3475d&filesessionid=6ecc29cd-a4e2-487d-9cfa-842648a3475d - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ecc29cd-a4e2-487d-9cfa-842648a3475d&filesessionid=6ecc29cd-a4e2-487d-9cfa-842648a3475d'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b0827568-a810-4ba0-bffa-e98b0d6b4ddd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [12ede48a-25b8-11e9-9772-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1211'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9a7f38a7-ce10-45d1-8ae5-098a6d421bfa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [13008b82-25b8-11e9-92c8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980811590,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980811754,"modificationTime":1548980812640,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980812822,"modificationTime":1548980812822,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1133'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [db2993d4-8eb8-41d4-b2c4-baee1f579b22] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1312690c-25b8-11e9-991b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810953,"modificationTime":1548980810992,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980811268,"modificationTime":1548980811289,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980811568,"modificationTime":1548980811601,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['941'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [355a4ca4-8187-4d2c-bcf8-b0fdf734c88d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1324baa6-25b8-11e9-a123-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980811990,"modificationTime":1548980812039,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980812304,"modificationTime":1548980812336,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980812616,"modificationTime":1548980812664,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['941'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6456ba01-be8b-4896-bb89-2ab39275f7fc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [13374ce4-25b8-11e9-8f61-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['57'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c222564-95ea-43f4-af68-294f5cdda5d2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [13495e14-25b8-11e9-990a-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980813196,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['328'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [23be6193-e9f9-4ae0-a0ed-db69eb6e0f94] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [135b7646-25b8-11e9-b7c9-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980813183,"modificationTime":1548980813258,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['356'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:26:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9d3c5b4e-9f0d-4513-9b3d-ff6f43d3b2d8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [19e39910-25b8-11e9-9c06-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1211'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:04 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b1f28a11-ce41-4571-bacf-fd0590a66724] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [19f64d8a-25b8-11e9-a7c2-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980811590,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980811754,"modificationTime":1548980812640,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980812822,"modificationTime":1548980812822,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1133'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:04 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e111c949-d655-4f6a-9190-c22c552d070a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1a340ec2-25b8-11e9-a38d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810953,"modificationTime":1548980810992,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980811268,"modificationTime":1548980811289,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980811568,"modificationTime":1548980811601,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['941'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:05 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2bde9180-c5c4-4a71-acc2-d1efec02744e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1a71cac0-25b8-11e9-9d54-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980813183,"modificationTime":1548980813258,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['356'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:05 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0fd7efe7-b3ec-4e3d-9714-7f127573da2e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1a6f6d2e-25b8-11e9-b6c3-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980811590,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980811754,"modificationTime":1548980812640,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980812822,"modificationTime":1548980812822,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1133'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:06 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [db0fcdbb-961c-48a8-9e2d-84857da3efee] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b364f68-25b8-11e9-ba0f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bdbd8927-25db-4fe1-b595-812ad434c165] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b484a68-25b8-11e9-9645-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [eed5e9e1-05fe-413f-b908-4eea0bf099e7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b5a56fa-25b8-11e9-a097-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [df638032-06b7-46e6-ae57-ca1a338510fe] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b6c2b74-25b8-11e9-a0b1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c60ef9dd-1f25-4931-9f67-3cdb12e315aa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b7e0c80-25b8-11e9-a2b3-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3883b28a-7e18-4f63-9d14-1180db179e2e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1b8fda5e-25b8-11e9-bb87-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9caf683e-ae8c-4fe9-b0f8-c395ad5d25df] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1ba1cf1c-25b8-11e9-85db-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7f0887b2-5559-4514-ae2c-94f8fb5c3976] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1bb3de76-25b8-11e9-bf78-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d8ceeee6-5d87-41d5-ace4-899164d896cb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1bc5c5f6-25b8-11e9-b9af-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [90568829-8643-4614-a35f-1d7434857b0a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1bd7c228-25b8-11e9-8813-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [21d5a01b-85bf-4bff-ba6f-11b92e19e5f8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1be9e170-25b8-11e9-b160-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ec16528-e8aa-40d0-8820-bead7f516441] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c1de6b4-25b8-11e9-9ea4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [63c7665f-6a98-47dc-95cd-ed1a727f5e0e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c3001e6-25b8-11e9-85f4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9d71b06d-f5dd-4d83-9a7a-cbd2231add7a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c42230a-25b8-11e9-bb3d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a386ed27-8127-4bde-8c61-c2658c4c394a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [22ad0392-25b8-11e9-aaaf-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:19 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7321868f-058f-43ae-886c-c32915ee4beb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [22c6beb4-25b8-11e9-9194-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980811590,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980811754,"modificationTime":1548980812640,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980812822,"modificationTime":1548980812822,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:19 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e7b795aa-43f8-4226-9ade-a914d803f50e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2304973e-25b8-11e9-bc01-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810953,"modificationTime":1548980810992,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980811268,"modificationTime":1548980811289,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980811568,"modificationTime":1548980811601,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:20 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [87916d1c-3cb7-491d-b750-e8760d5a438f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [23407f9c-25b8-11e9-855a-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980811590,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980811754,"modificationTime":1548980812640,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980812822,"modificationTime":1548980812822,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980812940,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:20 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7dd8d77d-f0aa-4d40-9b79-dcae9b22d23e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [248552a8-25b8-11e9-94e1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b9ab97a6-a1cc-4561-b801-515a93476239] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24975410-25b8-11e9-861e-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8515b6e5-bb19-4fe2-a269-be0f2252791d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24a95c26-25b8-11e9-917c-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [52ecfddf-7a84-42ab-89ab-7fafb5c4b9ae] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24bb40a6-25b8-11e9-8132-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ace4f387-1d47-4b31-a6ea-2e0e297c1340] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24cd35d2-25b8-11e9-9d59-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [99aaa581-b33a-49b3-a4f3-9ac632527a40] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24df1686-25b8-11e9-9d0d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0572735a-14b3-45a9-b0b1-6f6b2708455e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [24f11b48-25b8-11e9-9331-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fab06809-a4d0-4843-85cc-5bfa592fee8b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25031fcc-25b8-11e9-a5f4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e4542840-c412-4166-8e77-ec6ce9c551ac] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2515533a-25b8-11e9-8e7f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4ddeb787-88ec-42bf-a614-ba75e31795d7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25275b94-25b8-11e9-b1db-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [aeec5530-101b-4861-b45c-7eff8167771d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2539773a-25b8-11e9-b716-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [36b60d93-e614-4b73-962c-6298c63442d4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [254b931e-25b8-11e9-b730-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cd05bad6-657d-4a73-b7aa-5ebe94016df0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [255db4e4-25b8-11e9-86da-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dca9ad61-ed0a-4e46-80f9-c171f93aca4f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25700278-25b8-11e9-a6fc-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e6144ad7-73dc-4e01-95a3-e4d270cf370e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25821e9a-25b8-11e9-bbad-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f128dfb8-f215-4b02-9143-7d8e1c16af07] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25947158-25b8-11e9-a710-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548980810719,"modificationTime":1548980812940,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [55a0301d-c28a-437e-ae7e-919bee45da45] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25a6dffa-25b8-11e9-8947-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ef93c73a-93ea-11eb-870b-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b&filesessionid=a49a67f8-1d44-4eaf-8f9b-6ea66b030d1b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - aa4db881-cb22-4643-ba41-98fc09a7edb2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - efab99c2-93ea-11eb-ab00-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392277318,"modificationTime":1617392281356,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276164,"modificationTime":1617392276317,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276618,"modificationTime":1617392276754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 378ba479-ff0d-4712-88f9-a0792e350536 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - efbf3428-93ea-11eb-8d6f-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392277318,"modificationTime":1617392279569,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392279858,"modificationTime":1617392280954,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392281232,"modificationTime":1617392281232,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392281356,"modificationTime":1617392281356,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5d8484a4-2a7b-41fc-b5d6-bd2da6526279 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - efd28782-93ea-11eb-8cc6-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392277571,"modificationTime":1617392278864,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392279153,"modificationTime":1617392279286,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392279565,"modificationTime":1617392279707,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0922175c-aa2f-4eb6-99c1-f0730f2526a3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - efe612b0-93ea-11eb-b434-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392280112,"modificationTime":1617392280239,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392280513,"modificationTime":1617392280660,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392280950,"modificationTime":1617392281082,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2a989851-e352-48a9-bc8f-d67f45932a55 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - eff9f3fa-93ea-11eb-a475-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8c9621d8-5e51-41a5-a0d4-b34cb6e4ec63 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f00cac0a-93ea-11eb-ae2b-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392281356,"modificationTime":1617392281634,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2e7613a3-8d9c-4e12-beca-fa1a27021496 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0203eae-93ea-11eb-9e1d-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392281631,"modificationTime":1617392281770,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 538edb7a-d1a6-41dd-8ff4-e8db3e692a47 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f033dcac-93ea-11eb-81c2-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392275425,"modificationTime":1617392277318,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3d5acf72-bc7e-49b4-b580-08df2526977e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f05050a4-93ea-11eb-9600-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=MODIFYACLENTRIES&api-version=2018-09-01&aclSpec=default%3Auser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A---%2Cuser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A--- + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:38:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8130261b-4e2b-4915-bbe2-bd7525a12aca + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0651868-93ea-11eb-9a65-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e9c0d5b5-bfb3-42be-b2d1-1963515e890f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f078cc22-93ea-11eb-b928-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392277318,"modificationTime":1617392281356,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276164,"modificationTime":1617392276317,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276618,"modificationTime":1617392276754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4f2dca3f-0d1d-4fbc-beff-f7ecf2003932 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f08c060c-93ea-11eb-90de-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392277318,"modificationTime":1617392281356,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ddb08b8c-437f-4f60-acb5-11cec7a981f8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f09ed17a-93ea-11eb-838b-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [43019019-cbb5-4e43-9dfc-36b062ea2635] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25ba4850-25b8-11e9-847f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4b85cb9c-45a0-4366-86c8-2d9e04df523c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25e40e3e-25b8-11e9-9b01-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980809772,"modificationTime":1548980809851,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1b033a54-ec97-4f0a-ae76-40e67e729dc2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [25f5b524-25b8-11e9-8622-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 55c7fca5-cfa3-4ff9-a50b-6f1369d10248 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0b422b4-93ea-11eb-9621-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276164,"modificationTime":1617392276317,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276618,"modificationTime":1617392276754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3713a241-78e0-469f-90b9-b013e99313db + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0c7d26e-93ea-11eb-905a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392276164,"modificationTime":1617392276317,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1db383d8-1ecf-40fb-a229-3aeabcdf8648 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0d9acc8-93ea-11eb-97d6-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9dfde5e1-e35f-4216-a680-f5e7f12942f5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [260a1bb6-25b8-11e9-ad0b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['644'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bdcb612a-82ff-4a64-a34f-9739df26ab8b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [261c9ca8-25b8-11e9-9d9e-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980810122,"modificationTime":1548980810226,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [702a6cef-937b-404d-93a0-697bc906b1f0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [262dfd38-25b8-11e9-b1aa-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3c3f9589-b6b1-4f33-804d-1f047542f559 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f0ee4698-93ea-11eb-8c79-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392276618,"modificationTime":1617392276754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3a0f95fd-a52b-48a4-b36a-cabbbad6982c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f10197f4-93ea-11eb-9d26-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392276618,"modificationTime":1617392276754,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 41cdf40c-523a-4b4c-b5c7-59528e954116 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f1190178-93ea-11eb-92cb-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7275aebd-c505-4a00-91d2-4f39c13e679f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2643632e-25b8-11e9-ba21-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['350'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e767bf48-a19e-4840-9b37-56f21b37e841] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2655c052-25b8-11e9-ad47-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980810514,"modificationTime":1548980810554,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e445a238-f065-4a25-b53a-b0dcd96facd1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2667430a-25b8-11e9-b823-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f8e4616d-949e-4627-8e02-3fc8062d4264 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f131ea9e-93ea-11eb-af9c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - be088374-dd39-40d6-a510-5a338d7c765f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f145b434-93ea-11eb-b400-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392277019,"modificationTime":1617392277161,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f025ee0a-53b2-497e-829d-b058ca7abe15 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - f158790c-93ea-11eb-aca1-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirf579c544-c803-4bcb-a231-c27e2eda447d/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2776a110-f8b7-4397-84cd-99548615bf91] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7c16ace8-25bf-11e9-8fa9-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fd4b80e4-f133-4ca5-9a9b-51aad61fef8e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7c535f54-25bf-11e9-b46d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv - [3066b46e-3ab0-48a7-a4b6-0f9a1e39aa19][2019-01-31T17:19:56.7115256-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3066b46e-3ab0-48a7-a4b6-0f9a1e39aa19] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:38:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 020b9ff9-ea3b-4a6d-ac27-5abfbc7db89b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6cb98e30-93eb-11eb-b1f5-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 33ef21c9-22fb-4fc1-83cb-9dd99b3e2678 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6d2aa040-93eb-11eb-8b48-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv + [5832b239-b7cd-4098-9549-70ecdcccaf97][2021-04-02T12:41:32.4621351-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5832b239-b7cd-4098-9549-70ecdcccaf97 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6d3e9d3a-93eb-11eb-ac57-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=a6f4cd6a-46fa-4d97-943a-5e581965b91c&filesessionid=a6f4cd6a-46fa-4d97-943a-5e581965b91c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=a6f4cd6a-46fa-4d97-943a-5e581965b91c&filesessionid=a6f4cd6a-46fa-4d97-943a-5e581965b91c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 60253abc-a4b5-4132-947d-56cc1917cbce + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7c664e7a-25bf-11e9-a9db-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=05b16d75-9b06-43ee-ac1a-3dedc3f7767d&filesessionid=05b16d75-9b06-43ee-ac1a-3dedc3f7767d - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=05b16d75-9b06-43ee-ac1a-3dedc3f7767d&filesessionid=05b16d75-9b06-43ee-ac1a-3dedc3f7767d'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4d02b401-b622-4311-b23a-c192e585ae44] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7c86c122-25bf-11e9-9108-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv - [b2442516-db6c-49ba-b973-3e7f2fe52abf][2019-01-31T17:19:57.0396732-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b2442516-db6c-49ba-b973-3e7f2fe52abf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6d568752-93eb-11eb-ba15-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=a6f4cd6a-46fa-4d97-943a-5e581965b91c&filesessionid=a6f4cd6a-46fa-4d97-943a-5e581965b91c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 10aa910e-c082-4d8d-82da-9b3de3a22a68 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6d804374-93eb-11eb-a946-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv + [17a25ae2-d9bb-45b1-beab-e52ac15970bc][2021-04-02T12:41:33.0245958-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 17a25ae2-d9bb-45b1-beab-e52ac15970bc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6d94b380-93eb-11eb-aae8-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=de532885-cb96-48a5-b24d-ac1c0792da25&filesessionid=de532885-cb96-48a5-b24d-ac1c0792da25 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:32 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=de532885-cb96-48a5-b24d-ac1c0792da25&filesessionid=de532885-cb96-48a5-b24d-ac1c0792da25 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 31124040-800a-40f8-b64e-f68cca8a9360 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7c99b058-25bf-11e9-89db-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=89a53fbf-c019-44c8-a56d-7f8aed5a7478&filesessionid=89a53fbf-c019-44c8-a56d-7f8aed5a7478 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=89a53fbf-c019-44c8-a56d-7f8aed5a7478&filesessionid=89a53fbf-c019-44c8-a56d-7f8aed5a7478'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2a70d1e8-a14d-44e0-885d-6f916b753e4b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7cbc32b8-25bf-11e9-89aa-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt - [bc40ecc2-ea2e-4eb0-b872-e48f328b5b20][2019-01-31T17:19:57.3990337-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bc40ecc2-ea2e-4eb0-b872-e48f328b5b20] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6dad1b9c-93eb-11eb-9c4f-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=de532885-cb96-48a5-b24d-ac1c0792da25&filesessionid=de532885-cb96-48a5-b24d-ac1c0792da25 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e2fcb2be-ecda-4be5-9335-715002f52caf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6dc8b9f0-93eb-11eb-911a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt + [66e6ecfa-1d7f-45ce-bdfd-27ea82042b38][2021-04-02T12:41:33.5089350-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 66e6ecfa-1d7f-45ce-bdfd-27ea82042b38 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6ddcde24-93eb-11eb-9041-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1a798c50-8adb-497b-8a02-bf71467843bf&filesessionid=1a798c50-8adb-497b-8a02-bf71467843bf + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1a798c50-8adb-497b-8a02-bf71467843bf&filesessionid=1a798c50-8adb-497b-8a02-bf71467843bf + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b24313ad-6bda-409e-afd9-a17a1350ac12 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7ccf5c94-25bf-11e9-91fd-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a39e911-101d-4dd7-862a-0afac6a220ab&filesessionid=3a39e911-101d-4dd7-862a-0afac6a220ab - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a39e911-101d-4dd7-862a-0afac6a220ab&filesessionid=3a39e911-101d-4dd7-862a-0afac6a220ab'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1177acee-0672-4c80-8055-763a0da769e0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7cf0f466-25bf-11e9-8851-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6b0a4901-eedf-4385-8dd6-04fbe884f5a4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d047ff4-25bf-11e9-8bd6-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv - [4ff413f4-0432-412f-90fb-96f4a09e88b9][2019-01-31T17:19:57.8677903-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4ff413f4-0432-412f-90fb-96f4a09e88b9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6df37358-93eb-11eb-b540-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=1a798c50-8adb-497b-8a02-bf71467843bf&filesessionid=1a798c50-8adb-497b-8a02-bf71467843bf + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 64b33613-2f89-46ca-b8be-35b2667fb8b9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e0fd4e4-93eb-11eb-9817-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 42de97ba-ca7a-4a40-8774-b8a1a5258848 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e245808-93eb-11eb-a3a6-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/x.csv + [76c67934-ee72-46db-b0c1-0045f0fa89a8][2021-04-02T12:41:34.1182375-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 76c67934-ee72-46db-b0c1-0045f0fa89a8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e3ae5de-93eb-11eb-a20f-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5&filesessionid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5&filesessionid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d2b69ba0-9e6f-4f8b-b09e-cc1b787de7a7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d183b24-25bf-11e9-a2fa-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=034fb50b-4de3-45fe-a5eb-3540529d1f69&filesessionid=034fb50b-4de3-45fe-a5eb-3540529d1f69 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=034fb50b-4de3-45fe-a5eb-3540529d1f69&filesessionid=034fb50b-4de3-45fe-a5eb-3540529d1f69'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8ce9ff81-35d2-4e71-b1eb-edf7e6585e8a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d38ff36-25bf-11e9-ad5d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv - [7925dcaa-fddc-4992-96cb-6f715adc03d8][2019-01-31T17:19:58.2115425-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7925dcaa-fddc-4992-96cb-6f715adc03d8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e53ca24-93eb-11eb-ad14-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5&filesessionid=4a6d17a3-6a53-4cce-b58c-06a9958a39f5 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c63318f1-db38-4cc5-806c-84651b9c77b4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e6d0f0a-93eb-11eb-8e12-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/y.csv + [9103ef36-d023-45ad-821d-d7ddcf75ca11][2021-04-02T12:41:34.5713563-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9103ef36-d023-45ad-821d-d7ddcf75ca11 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e810e6e-93eb-11eb-aa27-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=dd75374c-002b-4520-a1b3-6318907fd52b&filesessionid=dd75374c-002b-4520-a1b3-6318907fd52b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=dd75374c-002b-4520-a1b3-6318907fd52b&filesessionid=dd75374c-002b-4520-a1b3-6318907fd52b + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 726f3d35-9b35-470e-846a-7b3e6c54c291 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d4bee5e-25bf-11e9-b4c5-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e29116b3-e785-401d-8722-fdb88441f30c&filesessionid=e29116b3-e785-401d-8722-fdb88441f30c - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e29116b3-e785-401d-8722-fdb88441f30c&filesessionid=e29116b3-e785-401d-8722-fdb88441f30c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [71d77d55-4331-42e0-941f-89244af7e58b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d6d17cc-25bf-11e9-b725-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt - [486e1ddc-1a90-4de9-b7f4-f50bfe5880e8][2019-01-31T17:19:58.5552950-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [486e1ddc-1a90-4de9-b7f4-f50bfe5880e8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6e972e52-93eb-11eb-aa5c-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=dd75374c-002b-4520-a1b3-6318907fd52b&filesessionid=dd75374c-002b-4520-a1b3-6318907fd52b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 52ecd062-7a91-4e8f-aaf6-16a40c5efe81 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6eb36674-93eb-11eb-a9c6-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/z.txt + [3acbdbc3-a9a6-45cf-99c2-130c06242cc6][2021-04-02T12:41:35.0244237-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3acbdbc3-a9a6-45cf-99c2-130c06242cc6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6ec8001e-93eb-11eb-80ae-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=8fd9aa32-039f-4f5a-8e14-20df4be457af&filesessionid=8fd9aa32-039f-4f5a-8e14-20df4be457af + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:34 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=8fd9aa32-039f-4f5a-8e14-20df4be457af&filesessionid=8fd9aa32-039f-4f5a-8e14-20df4be457af + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4383908e-4f0a-488e-b477-4222f1477b52 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7d802e12-25bf-11e9-9b61-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d560ba8b-d6a1-402a-aa36-5e4486843abe&filesessionid=d560ba8b-d6a1-402a-aa36-5e4486843abe - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d560ba8b-d6a1-402a-aa36-5e4486843abe&filesessionid=d560ba8b-d6a1-402a-aa36-5e4486843abe'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [68d50446-1195-4352-b671-531aba12f4fe] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7da1299a-25bf-11e9-bae8-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [36e26210-d9d5-4165-9e46-91ff99027d55] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7db4df00-25bf-11e9-81aa-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv - [f170a95f-1319-47f3-9b2b-e1cbd1427136][2019-01-31T17:19:59.0240484-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f170a95f-1319-47f3-9b2b-e1cbd1427136] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6eddd364-93eb-11eb-8fe4-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=8fd9aa32-039f-4f5a-8e14-20df4be457af&filesessionid=8fd9aa32-039f-4f5a-8e14-20df4be457af + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65c08ab9-5cd6-4a7b-a0e7-1fc416612fa9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6ef814a2-93eb-11eb-ac76-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e75578f2-16a1-4c6c-b3d2-9f4d7fc84685 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f0f52d4-93eb-11eb-bfaf-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/x.csv + [5e6c41b1-7f1e-4167-b7d1-9b05e776ec9b][2021-04-02T12:41:35.6493844-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5e6c41b1-7f1e-4167-b7d1-9b05e776ec9b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f23c32e-93eb-11eb-9b8c-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=08c20719-37d2-48d1-be90-00c8ba967836&filesessionid=08c20719-37d2-48d1-be90-00c8ba967836 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=08c20719-37d2-48d1-be90-00c8ba967836&filesessionid=08c20719-37d2-48d1-be90-00c8ba967836 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 16c082cf-d5ca-4bd7-8a41-e08994eff122 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7dc7f66c-25bf-11e9-948a-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a3bd021-e856-49fc-9724-378059fa8902&filesessionid=3a3bd021-e856-49fc-9724-378059fa8902 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a3bd021-e856-49fc-9724-378059fa8902&filesessionid=3a3bd021-e856-49fc-9724-378059fa8902'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [38d463d5-2632-48d8-a905-1f97585dfc1f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7de6a668-25bf-11e9-8dfc-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv - [f627ed0f-2b42-47de-821a-a4d4ded4ef25][2019-01-31T17:19:59.3521750-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f627ed0f-2b42-47de-821a-a4d4ded4ef25] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f3a7f92-93eb-11eb-a62e-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=08c20719-37d2-48d1-be90-00c8ba967836&filesessionid=08c20719-37d2-48d1-be90-00c8ba967836 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eb269232-caa6-4e7e-bbe6-f17e8990be6c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f5de4a4-93eb-11eb-9dd5-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/y.csv + [84c4559c-d381-4f09-ae4d-5faf0855d45b][2021-04-02T12:41:36.1493723-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 84c4559c-d381-4f09-ae4d-5faf0855d45b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f721418-93eb-11eb-93a4-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=5bc5c5da-b94c-4133-a307-db247ba50eef&filesessionid=5bc5c5da-b94c-4133-a307-db247ba50eef + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=5bc5c5da-b94c-4133-a307-db247ba50eef&filesessionid=5bc5c5da-b94c-4133-a307-db247ba50eef + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 13ba7f5b-65c7-4a74-96da-9c6b50e68231 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7df9e3ba-25bf-11e9-9b79-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a8446ad4-7602-4afb-b861-43a459f6be2a&filesessionid=a8446ad4-7602-4afb-b861-43a459f6be2a - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:59 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a8446ad4-7602-4afb-b861-43a459f6be2a&filesessionid=a8446ad4-7602-4afb-b861-43a459f6be2a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [aac5b1c1-c4f1-444a-8682-73fb7559cadd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7e3e4d3a-25bf-11e9-96b9-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt - [c6cd8811-1dd4-4112-9905-c9f8fa805c2d][2019-01-31T17:19:59.9303044-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c6cd8811-1dd4-4112-9905-c9f8fa805c2d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6f8945ae-93eb-11eb-898b-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=5bc5c5da-b94c-4133-a307-db247ba50eef&filesessionid=5bc5c5da-b94c-4133-a307-db247ba50eef + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e8d3cd99-e068-4ce0-9bbf-eb54d81688c0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6fa13cd2-93eb-11eb-9ecc-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/z.txt + [26909e77-6472-4279-b10e-f92d89e2ef19][2021-04-02T12:41:36.6024373-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 26909e77-6472-4279-b10e-f92d89e2ef19 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6fb58102-93eb-11eb-bb46-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=83ea85d0-4dd9-43a2-b3e6-463e489d219a&filesessionid=83ea85d0-4dd9-43a2-b3e6-463e489d219a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=83ea85d0-4dd9-43a2-b3e6-463e489d219a&filesessionid=83ea85d0-4dd9-43a2-b3e6-463e489d219a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3faabb0b-65fa-464f-82e9-096156534446 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7e51898c-25bf-11e9-aafd-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6a48e159-22f5-47bf-8d8d-0e17d38b1809&filesessionid=6a48e159-22f5-47bf-8d8d-0e17d38b1809 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:19:59 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6a48e159-22f5-47bf-8d8d-0e17d38b1809&filesessionid=6a48e159-22f5-47bf-8d8d-0e17d38b1809'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8169b61a-3d0a-42c5-8908-e569e6a84650] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7e726608-25bf-11e9-b53a-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/empty?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ab72742d-33aa-4c28-91ab-a89751d17383] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7e86535a-25bf-11e9-9e6b-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MKDIRS&api-version=2018-05-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:19:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6eb4b598-cf49-4873-8ba4-609712bd472b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7e9a301e-25bf-11e9-b292-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt - [059b4a8b-7a3d-48b1-9a9c-0c2a40a0b499][2019-01-31T17:20:00.5240619-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [059b4a8b-7a3d-48b1-9a9c-0c2a40a0b499] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6fcfbd70-93eb-11eb-9fc0-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=83ea85d0-4dd9-43a2-b3e6-463e489d219a&filesessionid=83ea85d0-4dd9-43a2-b3e6-463e489d219a + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 91b72ee9-2fc9-4de3-806f-552142c52ffa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6ffb73b4-93eb-11eb-8a22-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:36 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c320de5c-4c82-45f3-8703-f98875ef4f31 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7011a8b0-93eb-11eb-90d7-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1e1371fd-3ae6-4257-a3a9-a89fd2d69e5f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70269146-93eb-11eb-8741-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single/single.txt + [a1195387-8fa8-4916-9a19-d32aad111a7a][2021-04-02T12:41:37.4617571-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a1195387-8fa8-4916-9a19-d32aad111a7a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7039058a-93eb-11eb-9a78-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=26529714-dc18-4e46-9850-87d07919161d&filesessionid=26529714-dc18-4e46-9850-87d07919161d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=26529714-dc18-4e46-9850-87d07919161d&filesessionid=26529714-dc18-4e46-9850-87d07919161d + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2f2c87d7-47bf-46af-ad40-aa99e108a780 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7ead84b0-25bf-11e9-a7be-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e003c793-e916-408a-83d3-9a79cfa9b04a&filesessionid=e003c793-e916-408a-83d3-9a79cfa9b04a - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e003c793-e916-408a-83d3-9a79cfa9b04a&filesessionid=e003c793-e916-408a-83d3-9a79cfa9b04a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f28fa33e-74a1-4d4d-9c54-7e952fe233b1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7ed08568-25bf-11e9-8a01-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1c29a14f-fb08-4bba-bf54-3495a0a14dcf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7ee59b46-25bf-11e9-b587-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548983998714,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548983998909,"modificationTime":1548984000086,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984000282,"modificationTime":1548984000282,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a1eba6cd-3251-4a47-ba35-1741708410ef] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7ef98892-25bf-11e9-9349-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998018,"modificationTime":1548983998055,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998360,"modificationTime":1548983998399,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983998703,"modificationTime":1548983998742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [712e4de0-d013-437e-a68f-44ca83de6312] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7f0ff9ae-25bf-11e9-870a-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983999172,"modificationTime":1548983999195,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983999500,"modificationTime":1548983999664,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984000076,"modificationTime":1548984000117,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8ea25615-a354-489e-b910-a9466ab2a938] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7f261f06-25bf-11e9-8034-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/empty?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['34'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:00 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0dba6ab9-489a-438f-9b17-ff3ae526ec4d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7f3ae348-25bf-11e9-9d15-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000704,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['305'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:01 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ff360053-c13b-494a-9870-dcf001657717] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [7f4ed90a-25bf-11e9-ac52-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984000683,"modificationTime":1548984000742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:01 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8be55060-5558-4c9f-83cf-b12d17c64d48] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [85ce4d88-25bf-11e9-a41c-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ebc982bb-e9c2-4538-a86b-87639a099eaf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [85e962e8-25bf-11e9-a0fa-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548983998714,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548983998909,"modificationTime":1548984000086,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984000282,"modificationTime":1548984000282,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1f1e05fb-a786-4e91-b8e1-850e1ab83c14] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8628b50c-25bf-11e9-a0a6-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998018,"modificationTime":1548983998055,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998360,"modificationTime":1548983998399,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983998703,"modificationTime":1548983998742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9d6710ef-43aa-4118-9c1d-33948255dbfa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [86657cc0-25bf-11e9-800f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984000683,"modificationTime":1548984000742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [afb62f1b-c698-4829-ad6e-88eb3e14a3b6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [86651b1c-25bf-11e9-9463-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548983998714,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548983998909,"modificationTime":1548984000086,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984000282,"modificationTime":1548984000282,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7b84a661-f2de-4fc2-843a-db6d783117e6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87605de6-25bf-11e9-a442-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b35c2112-8d04-430a-a5fb-67d0b2e86113] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87745bd0-25bf-11e9-abf1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9ca42a86-bff6-42b7-bee9-d31a18548d3f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87881ce6-25bf-11e9-a2dc-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4c9db918-c757-44ba-bb53-20f68eda21c7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [879bf912-25bf-11e9-8c93-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [37e0f01c-ba77-4807-9c36-e653235ca9a8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87afe6a8-25bf-11e9-8586-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [616aad41-f66b-4340-b844-1e13d2de14ad] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87c40058-25bf-11e9-8cc1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1cdf260b-8b81-4a7a-b32b-93f1ba843b54] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87d8068c-25bf-11e9-b3b7-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c9d0eba4-ba8b-42fd-b33c-a500961d6129] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [87ec1128-25bf-11e9-94d2-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ed6163ba-45d6-4b53-bc6e-bb9ed919dd19] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [880002b8-25bf-11e9-be69-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5488d069-41d3-4bd0-934d-8f5fb1b73e33] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8813f640-25bf-11e9-9880-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [352edfe7-2682-4b71-92dc-fd47b0b77ad5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [88281e34-25bf-11e9-ba66-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4a0d1515-d1ac-4afc-b8c2-6d84e6bc79f7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [883c2778-25bf-11e9-8e84-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:16 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [866923ed-0799-4252-9af2-99f6c147e313] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [885015ba-25bf-11e9-9bab-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:16 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [46aa5e1c-abba-4a76-8de4-59f5a92007b4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [88643d98-25bf-11e9-bef3-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:16 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [92387090-3cca-41aa-99fd-e96a07becd23] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8ebec928-25bf-11e9-b0e1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [499f232b-9c0d-4591-95f7-28df816a8fb7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8ed3810a-25bf-11e9-aaef-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548983998714,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548983998909,"modificationTime":1548984000086,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984000282,"modificationTime":1548984000282,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d040b341-dde6-413c-a273-c4f75bb3b085] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8f12eb28-25bf-11e9-921e-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998018,"modificationTime":1548983998055,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983998360,"modificationTime":1548983998399,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983998703,"modificationTime":1548983998742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [197b9a06-d018-457f-a375-391e1748d405] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8f59980a-25bf-11e9-b375-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984000683,"modificationTime":1548984000742,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['332'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5a61dd37-4997-43da-bc32-6a156672987d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [8f55778a-25bf-11e9-b911-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548983998714,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548983998909,"modificationTime":1548984000086,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984000282,"modificationTime":1548984000282,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984000412,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8981d001-b280-4cd9-bfd5-a5c783d290dd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [900668a4-25bf-11e9-8710-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [caf5c4b3-cbc8-4546-8d29-37a481b9c3e8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [901bda02-25bf-11e9-b169-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ce153c56-a47d-44b7-aab7-0dc6f02b1fc5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90300c92-25bf-11e9-9bec-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2062415e-fbe3-4017-b91c-2ea944ec4f5f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90441090-25bf-11e9-93a5-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [50655e53-d61c-4e06-a3be-41ae6085d8fd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9057f19e-25bf-11e9-9401-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7de20bbf-dda6-462a-a634-900c532bf3d2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [906be7e6-25bf-11e9-b739-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0df9d59c-b00c-4944-a548-81b9de24409f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [907fddda-25bf-11e9-98cc-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e1d774f6-0b94-44f6-bd83-9b5e36113529] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9093f17e-25bf-11e9-b8be-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5a16f03a-563f-4aca-9ca9-eb16935ee62d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90a7ef70-25bf-11e9-89e4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7d1e8dc9-97ec-4a13-9142-111031ccf33a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90bc0d06-25bf-11e9-8af4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [47d238ca-71a2-41a2-8f04-5e5cf68b3e80] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90d018fe-25bf-11e9-92d7-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2b22387a-d959-4d1a-a2f3-2371beb7c796] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90e47b0c-25bf-11e9-bbd6-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [76b26381-9505-4bbc-91a4-b81f73e198cc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [90f887c6-25bf-11e9-9fbb-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d4a9b102-f11a-4a61-9497-8caf2b1f3d29] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [910c99f8-25bf-11e9-b16d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ed39dbf8-751a-4505-8c52-6707492b0053] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9120e6d0-25bf-11e9-8612-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8babb555-6f34-4f33-88a8-57c1f9c986e5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [913520a6-25bf-11e9-b276-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548983997753,"modificationTime":1548984000412,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [32c1c6d5-38d1-41ae-af8e-4d884308d6ee] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9149d162-25bf-11e9-960e-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70503912-93eb-11eb-a710-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=26529714-dc18-4e46-9850-87d07919161d&filesessionid=26529714-dc18-4e46-9850-87d07919161d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dbfc06f1-c313-4b44-bb62-f31f25e62be5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 706c1430-93eb-11eb-b2a9-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392493974,"modificationTime":1617392497345,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392492620,"modificationTime":1617392492805,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392493188,"modificationTime":1617392493337,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3399285d-2c07-4a7d-9668-eacbc9ae8003 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70840936-93eb-11eb-bd45-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392493974,"modificationTime":1617392495189,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392495514,"modificationTime":1617392496775,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392497203,"modificationTime":1617392497203,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392497345,"modificationTime":1617392497345,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ef309ab4-c71b-4dd9-935c-3e79ffee1575 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7099c352-93eb-11eb-924f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392494281,"modificationTime":1617392494430,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392494726,"modificationTime":1617392494883,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392495185,"modificationTime":1617392495336,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:37 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 91253d6c-b0a4-44c4-bb4b-223abd00f419 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70b0cdc6-93eb-11eb-892d-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392495794,"modificationTime":1617392495946,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392496312,"modificationTime":1617392496446,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392496772,"modificationTime":1617392497039,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 08622709-ca08-442a-b0c5-cb3963b27ea9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70c4575c-93eb-11eb-933b-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c4291355-8a5d-4a1f-b66b-cefe4bc31499 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70d9834a-93eb-11eb-ba34-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392497345,"modificationTime":1617392497617,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fc95f937-0ba4-4222-8abc-f86ba8597e0d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 70eebb0a-93eb-11eb-9deb-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392497614,"modificationTime":1617392497774,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b3b89c9d-68d6-4406-9dd4-31c1418b9e8e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71049168-93eb-11eb-b4f3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392491457,"modificationTime":1617392493974,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 10e73f4b-b65c-4a0e-8d0d-6570f8f3cca2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71189f8a-93eb-11eb-8c36-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=MODIFYACLENTRIES&api-version=2018-09-01&aclSpec=default%3Auser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A---%2Cuser%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3A--- + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4cc49e82-c804-4e64-898a-e9ec8407f5cd + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 712b623a-93eb-11eb-a6fa-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dbc9afbd-79ce-4508-8ad1-e00aececac5a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 713ffb9e-93eb-11eb-ab10-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392493974,"modificationTime":1617392497345,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392492620,"modificationTime":1617392492805,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392493188,"modificationTime":1617392493337,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:38 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 08875ac3-5cd2-40be-abb7-e4f5cfc63f58 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7157f036-93eb-11eb-87ef-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392493974,"modificationTime":1617392497345,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 52befb64-379f-475e-9cef-868dd24e0e0d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7169847a-93eb-11eb-a0d0-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a9e4e356-b1da-440e-9b5c-d3c5f9f233b7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [915fafc6-25bf-11e9-b56f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c15996f3-da3b-49b2-941e-b12891fd52dd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [91746790-25bf-11e9-ba48-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983996852,"modificationTime":1548983996899,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [31dc1d32-2bfc-459f-935e-80baf8b70d73] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9187cb40-25bf-11e9-b8f3-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0e396d62-b849-49bd-abb5-7769d0f43301 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 717f2f90-93eb-11eb-b51c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392492620,"modificationTime":1617392492805,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392493188,"modificationTime":1617392493337,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2a870b7f-5267-4ade-a1f7-db8573fd477f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 7194b2ee-93eb-11eb-a6c3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392492620,"modificationTime":1617392492805,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1c05a095-89e1-49b2-9827-b9d790c0aab1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71a86212-93eb-11eb-a0c8-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [343160a8-6328-4fd0-93e5-002c8bfef3d1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [919e91f4-25bf-11e9-85ae-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['621'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [adb44ee5-c18e-41fa-b16c-6e78b9713280] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [91b319d2-25bf-11e9-8c70-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983997192,"modificationTime":1548983997242,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [70b73d21-0c78-48a1-a6fc-d1aed6b4eee0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [91c6667a-25bf-11e9-8fcb-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 648be5cb-7605-4735-b455-f216a9fd1ee4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71c16848-93eb-11eb-a21b-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392493188,"modificationTime":1617392493337,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 79482f15-dfdc-4197-9b45-f2f2ed54ba1c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71d8001a-93eb-11eb-90ce-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392493188,"modificationTime":1617392493337,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 43cf8787-d06f-4c61-9161-084533dec7a9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 71e9bda6-93eb-11eb-81ef-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7034423c-bfc9-4e40-9554-29bd2310539f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [91dd6094-25bf-11e9-b0c8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5b768962-ebfe-4f58-9b56-de0dc299ecc9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [91f1a5d8-25bf-11e9-af4c-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983997541,"modificationTime":1548983997586,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [165b89ac-51af-4a4b-b14a-710fa55b74b1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9204c166-25bf-11e9-96e5-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:40 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d2a76159-a5bb-488c-9c59-d720082dfbfb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 72020076-93eb-11eb-85f9-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:40 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7f7f1b33-44a6-4e9c-8677-b9bd64a3caf3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 721649f6-93eb-11eb-82e1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392493650,"modificationTime":1617392493821,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:40 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9c7a5e52-1088-4bb2-b9f0-157989a412a0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 722d6940-93eb-11eb-a4ba-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=DELETE&api-version=2018-05-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dirdc0aa1e3-3efb-4073-9eda-3fbf8a6dbefb/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bcae1fd5-f187-4d94-b074-cfed8bbace17] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0dfa2ebe-735a-11e9-8b8f-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bc768943-949f-44d2-9b8f-eee6535a5dca] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0e3b33cc-735a-11e9-a547-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv - [19d81276-2bf6-4a66-8965-7fa6252bfe35][2019-05-10T12:30:23.5515047-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [19d81276-2bf6-4a66-8965-7fa6252bfe35] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:41:40 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b9e4cf5d-649b-4943-b5b8-197c5176c711 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c532a582-93eb-11eb-8771-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - db2f38cc-3098-4bd0-99b6-96e28e4ba5ac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c5a1de50-93eb-11eb-8f16-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv + [3381055f-9e58-4d35-ad43-e37ead97070c][2021-04-02T12:44:00.9069547-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3381055f-9e58-4d35-ad43-e37ead97070c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c5b9f392-93eb-11eb-8eb7-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=36b09aa4-a133-4e95-b42a-b5d1c696ad50&filesessionid=36b09aa4-a133-4e95-b42a-b5d1c696ad50 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:00 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=36b09aa4-a133-4e95-b42a-b5d1c696ad50&filesessionid=36b09aa4-a133-4e95-b42a-b5d1c696ad50 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a8fdc890-e1bf-462f-92a7-7e68506e3528 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0e5149fe-735a-11e9-9510-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b2022b4d-1fb4-41b8-879c-18ce38ad890a&filesessionid=b2022b4d-1fb4-41b8-879c-18ce38ad890a - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:22 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b2022b4d-1fb4-41b8-879c-18ce38ad890a&filesessionid=b2022b4d-1fb4-41b8-879c-18ce38ad890a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [12f7f89a-7c11-4a44-801a-a36bae85171f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0e70289c-735a-11e9-889d-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv - [23ebfac0-8389-4018-b703-3f4d436b855b][2019-05-10T12:30:23.8952586-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [23ebfac0-8389-4018-b703-3f4d436b855b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c5d1f276-93eb-11eb-a9ea-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=36b09aa4-a133-4e95-b42a-b5d1c696ad50&filesessionid=36b09aa4-a133-4e95-b42a-b5d1c696ad50 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3e1dd1e3-0a37-4252-876c-7f53bc021ecf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c5f07d2e-93eb-11eb-b239-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv + [8097076b-d810-49eb-b984-8f5bdbe0517d][2021-04-02T12:44:01.4225084-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8097076b-d810-49eb-b984-8f5bdbe0517d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6081e5c-93eb-11eb-80e7-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=764de780-80d7-4dde-b85a-c7d879f37136&filesessionid=764de780-80d7-4dde-b85a-c7d879f37136 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=764de780-80d7-4dde-b85a-c7d879f37136&filesessionid=764de780-80d7-4dde-b85a-c7d879f37136 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5f549384-cbcb-4da5-848c-953f91c9391f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0e862a9e-735a-11e9-a8d3-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=fb2a6eb8-7bff-4a9e-b1ba-2236374ce172&filesessionid=fb2a6eb8-7bff-4a9e-b1ba-2236374ce172 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=fb2a6eb8-7bff-4a9e-b1ba-2236374ce172&filesessionid=fb2a6eb8-7bff-4a9e-b1ba-2236374ce172'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d4dea39-4e14-4d88-b924-cf2b898fcde5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0eaa85e4-735a-11e9-8ef8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt - [2ae6fedb-fe5d-4960-8730-c61febf7ab38][2019-05-10T12:30:24.2858862-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2ae6fedb-fe5d-4960-8730-c61febf7ab38] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6214708-93eb-11eb-bd38-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=764de780-80d7-4dde-b85a-c7d879f37136&filesessionid=764de780-80d7-4dde-b85a-c7d879f37136 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8a98f16b-be68-49e4-8c71-4025e9f26145 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c63d41dc-93eb-11eb-bdae-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt + [3bdbc6a4-b5c6-4151-a52f-fd74de9809aa][2021-04-02T12:44:01.9537238-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3bdbc6a4-b5c6-4151-a52f-fd74de9809aa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6586cac-93eb-11eb-aba1-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=ea2d8dc4-de86-410c-96e4-cdb0f925f722&filesessionid=ea2d8dc4-de86-410c-96e4-cdb0f925f722 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=ea2d8dc4-de86-410c-96e4-cdb0f925f722&filesessionid=ea2d8dc4-de86-410c-96e4-cdb0f925f722 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8347c28c-9bae-45a3-af60-2a6410c9e5d9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0ec03ef6-735a-11e9-a965-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c547e958-01e3-4877-9fe0-29416cf4a9f2&filesessionid=c547e958-01e3-4877-9fe0-29416cf4a9f2 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c547e958-01e3-4877-9fe0-29416cf4a9f2&filesessionid=c547e958-01e3-4877-9fe0-29416cf4a9f2'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [30668fb3-4815-41b2-8d2b-a05169cf11ac] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0eea80cc-735a-11e9-8875-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2440acd3-691a-4ccb-b54e-071a583eb758] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0f014634-735a-11e9-843f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv - [2c6f1c4e-272d-4ea3-afc4-e94507d9026b][2019-05-10T12:30:24.8483942-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c6f1c4e-272d-4ea3-afc4-e94507d9026b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c670b848-93eb-11eb-8b77-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=ea2d8dc4-de86-410c-96e4-cdb0f925f722&filesessionid=ea2d8dc4-de86-410c-96e4-cdb0f925f722 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - daacdfcd-c25b-4ab9-91dc-107a41fe04c7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c68c1f4a-93eb-11eb-aa4b-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b388c8da-e303-4b2e-8a74-6cf19e02ffd2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6a25700-93eb-11eb-bb7c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv + [40bb03eb-0fab-4a1f-85fc-a963597aafdc][2021-04-02T12:44:02.5943344-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 40bb03eb-0fab-4a1f-85fc-a963597aafdc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6ba9bfa-93eb-11eb-a433-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=340275a9-5e24-4957-938a-d024832fa050&filesessionid=340275a9-5e24-4957-938a-d024832fa050 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=340275a9-5e24-4957-938a-d024832fa050&filesessionid=340275a9-5e24-4957-938a-d024832fa050 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 12a42897-d71b-4aae-88fa-9b7c06b181d6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0f17e7dc-735a-11e9-9169-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=bce615b0-f6ee-4f4b-8ca1-6e76d8e6de63&filesessionid=bce615b0-f6ee-4f4b-8ca1-6e76d8e6de63 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=bce615b0-f6ee-4f4b-8ca1-6e76d8e6de63&filesessionid=bce615b0-f6ee-4f4b-8ca1-6e76d8e6de63'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [07d132c5-b602-47fe-8d32-fc19693f4255] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0f377cfa-735a-11e9-8bb8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv - [728d6a1c-35b7-42f3-aa3a-c19897dde81c][2019-05-10T12:30:25.2077727-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [728d6a1c-35b7-42f3-aa3a-c19897dde81c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6d30bf6-93eb-11eb-92da-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=340275a9-5e24-4957-938a-d024832fa050&filesessionid=340275a9-5e24-4957-938a-d024832fa050 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f11622e9-0a9e-4fd5-90cc-c404ce09a3fe + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c6efc45c-93eb-11eb-831a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv + [9c1accc9-64dc-4836-bbcb-dcc50e4b0022][2021-04-02T12:44:03.0786761-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9c1accc9-64dc-4836-bbcb-dcc50e4b0022 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c705076e-93eb-11eb-be47-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=348a1cbb-6567-4736-b925-0eb90808d415&filesessionid=348a1cbb-6567-4736-b925-0eb90808d415 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:02 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=348a1cbb-6567-4736-b925-0eb90808d415&filesessionid=348a1cbb-6567-4736-b925-0eb90808d415 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cc22fecd-878f-4a99-a22e-0eb6ba3ddc31 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [0f4dcc8a-735a-11e9-9c01-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=96c589db-44fd-4642-ac18-3b256cc389e6&filesessionid=96c589db-44fd-4642-ac18-3b256cc389e6 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:25 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=96c589db-44fd-4642-ac18-3b256cc389e6&filesessionid=96c589db-44fd-4642-ac18-3b256cc389e6'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d55cc06a-aed0-45e3-b6d0-3af5b9092340] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10029d28-735a-11e9-bfe8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt - [ec1684c4-1c7a-446b-85fe-921fe6e8eadd][2019-05-10T12:30:26.5359133-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ec1684c4-1c7a-446b-85fe-921fe6e8eadd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c72059e4-93eb-11eb-afde-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=348a1cbb-6567-4736-b925-0eb90808d415&filesessionid=348a1cbb-6567-4736-b925-0eb90808d415 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3c0fcda7-8b93-4c22-9062-05b065241d5d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c73f5102-93eb-11eb-a8f3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt + [345079fb-56a0-461d-9bb5-fcba500cd2d4][2021-04-02T12:44:03.6099083-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 345079fb-56a0-461d-9bb5-fcba500cd2d4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c755bf5c-93eb-11eb-b8d6-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f10a1db1-5cab-4c2c-9a34-f9126905b80c&filesessionid=f10a1db1-5cab-4c2c-9a34-f9126905b80c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f10a1db1-5cab-4c2c-9a34-f9126905b80c&filesessionid=f10a1db1-5cab-4c2c-9a34-f9126905b80c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 60513ca3-6aee-45b1-a891-ac5dc3bcf6d4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1018c4f8-735a-11e9-a698-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=33185c77-8b91-41e8-84e2-2d8659432260&filesessionid=33185c77-8b91-41e8-84e2-2d8659432260 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=33185c77-8b91-41e8-84e2-2d8659432260&filesessionid=33185c77-8b91-41e8-84e2-2d8659432260'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [571e22a2-d4f4-462d-a729-69429925de67] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10429402-735a-11e9-a88f-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [72d138f0-556b-44a4-a5ee-55727a196646] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10594ad8-735a-11e9-afeb-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv - [ded6cee6-77b5-4f90-a6e3-34ab8149171a][2019-05-10T12:30:27.1140435-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ded6cee6-77b5-4f90-a6e3-34ab8149171a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c7722f74-93eb-11eb-b8f1-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f10a1db1-5cab-4c2c-9a34-f9126905b80c&filesessionid=f10a1db1-5cab-4c2c-9a34-f9126905b80c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3e7ff479-9598-4e30-9498-1da985e8187a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c78d6836-93eb-11eb-a46b-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6d693828-c11d-42f9-bcac-c64fbc11b814 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c7a3b09a-93eb-11eb-94d7-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv + [96b9e723-5822-4562-ad1f-79e5e3ce0f61][2021-04-02T12:44:04.2817263-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 96b9e723-5822-4562-ad1f-79e5e3ce0f61 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c7bb69a6-93eb-11eb-a038-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0&filesessionid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0&filesessionid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e24280d5-9bf3-4c9e-bfee-56398cf37c9f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [106f845e-735a-11e9-9391-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c076d3c5-fa26-450e-8175-386570fc3f7c&filesessionid=c076d3c5-fa26-450e-8175-386570fc3f7c - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=c076d3c5-fa26-450e-8175-386570fc3f7c&filesessionid=c076d3c5-fa26-450e-8175-386570fc3f7c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [67df207b-73ed-4d22-9f35-89c96ac7f93f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [108f25be-735a-11e9-b527-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv - [a072c080-0a42-4822-8c6e-adcc5fbf3760][2019-05-10T12:30:27.4578204-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a072c080-0a42-4822-8c6e-adcc5fbf3760] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c7d55a42-93eb-11eb-b0f1-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0&filesessionid=1008b0b8-5ba8-4f32-b7c1-b2dd27601cb0 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d5bf89f2-cac8-4d5d-8d3d-833e6f1626c0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c7f0b786-93eb-11eb-a556-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv + [ee93253e-e0f5-4de9-91fa-185db1fdaa05][2021-04-02T12:44:04.7660448-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ee93253e-e0f5-4de9-91fa-185db1fdaa05 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c8066262-93eb-11eb-8e2e-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96&filesessionid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96&filesessionid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bbbde439-5d2e-487b-b406-761874af062c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10a58286-735a-11e9-a1d0-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d1c6908f-3439-42af-bd5a-435b13f26599&filesessionid=d1c6908f-3439-42af-bd5a-435b13f26599 - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:26 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d1c6908f-3439-42af-bd5a-435b13f26599&filesessionid=d1c6908f-3439-42af-bd5a-435b13f26599'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [086bb838-5701-4ef6-b48a-be5481a92a7e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10c70074-735a-11e9-88b9-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt - [8136df1c-a8da-470d-a348-25671c818ae5][2019-05-10T12:30:27.8328015-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8136df1c-a8da-470d-a348-25671c818ae5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c81f43e4-93eb-11eb-9b34-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96&filesessionid=f1ee0b96-6ebc-4386-97bb-8c813eeb6c96 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ce07808c-aaa5-477b-9258-925e68c44b0f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c83e16ae-93eb-11eb-9622-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt + [2868e2ac-b171-4dfc-8caa-995f77b6c2a0][2021-04-02T12:44:05.2816625-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2868e2ac-b171-4dfc-8caa-995f77b6c2a0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c853e878-93eb-11eb-a250-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=7c2cb14d-1743-457e-85f4-cc65f8bda5be&filesessionid=7c2cb14d-1743-457e-85f4-cc65f8bda5be + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=7c2cb14d-1743-457e-85f4-cc65f8bda5be&filesessionid=7c2cb14d-1743-457e-85f4-cc65f8bda5be + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 265faf40-2bcc-4c90-8476-577a5b9aa271 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [10dd74cc-735a-11e9-b591-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b5fc8dc1-e42a-4767-b8d4-84cb3b67fecd&filesessionid=b5fc8dc1-e42a-4767-b8d4-84cb3b67fecd - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:27 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b5fc8dc1-e42a-4767-b8d4-84cb3b67fecd&filesessionid=b5fc8dc1-e42a-4767-b8d4-84cb3b67fecd'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [85553d04-64c2-484f-aaa0-77889a2600c2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11055a68-735a-11e9-999d-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/empty?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fc86d574-2dfb-41cb-aa00-dbe433cbb34d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [111c39e4-735a-11e9-8dac-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MKDIRS&api-version=2018-09-01 - response: - body: {string: '{"boolean":true}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [492df378-4135-4138-b1b8-c56a75af5af2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11334c8c-735a-11e9-9938-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder - does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt - [c3a2ca9a-b5c6-4edd-9109-4e57a35f54b1][2019-05-10T12:30:28.6609357-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c3a2ca9a-b5c6-4edd-9109-4e57a35f54b1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c87015c0-93eb-11eb-b4d9-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=7c2cb14d-1743-457e-85f4-cc65f8bda5be&filesessionid=7c2cb14d-1743-457e-85f4-cc65f8bda5be + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7f74d593-8903-4e4d-bb08-04528b8d3929 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c88f9f24-93eb-11eb-8178-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e81c66b3-067c-4746-b5fa-fc39030bcf46 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c8a5f428-93eb-11eb-bf77-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c14b11fc-f5c9-4866-9c5b-1c2741e06214 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c8bba0d2-93eb-11eb-bd98-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt + [2ba54f0f-b4d0-40d1-899b-2c51f68467c0][2021-04-02T12:44:06.1097113-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2ba54f0f-b4d0-40d1-899b-2c51f68467c0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c8d3e3cc-93eb-11eb-ba6a-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=09d63de1-df3a-4812-b257-7523f9ab525c&filesessionid=09d63de1-df3a-4812-b257-7523f9ab525c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:05 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=09d63de1-df3a-4812-b257-7523f9ab525c&filesessionid=09d63de1-df3a-4812-b257-7523f9ab525c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6cbc8842-18d1-45f8-a6d8-0b71c19690da + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [115b8ff4-735a-11e9-9029-480fcf66f040.0] - method: PUT - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3b8fe956-23b8-41f3-abd8-13753eb465ab&filesessionid=3b8fe956-23b8-41f3-abd8-13753eb465ab - response: - body: {string: ''} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3b8fe956-23b8-41f3-abd8-13753eb465ab&filesessionid=3b8fe956-23b8-41f3-abd8-13753eb465ab'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8c343622-91fa-48e8-b760-2ece314a42b0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11852840-735a-11e9-9443-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4648da15-de25-49b9-b729-4e66eb16ea97] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [119c8a50-735a-11e9-b1b0-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516626712,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516626968,"modificationTime":1557516628002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516628245,"modificationTime":1557516628245,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6c866681-c44c-47d1-a116-f70d17352aeb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11b39be4-735a-11e9-8ccd-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625023,"modificationTime":1557516625035,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625377,"modificationTime":1557516626364,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516626707,"modificationTime":1557516626785,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [581fb1a4-3643-4e78-8b8d-bc86525b48d9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11cb240a-735a-11e9-afbd-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516627276,"modificationTime":1557516627301,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516627629,"modificationTime":1557516627645,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516627996,"modificationTime":1557516628067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [114e553c-e49b-4dcc-b9f1-218ded2f63c4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11e2abd4-735a-11e9-9ca1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['57'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e6bf301a-8a71-48b2-b0cc-8842a47c4568] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [11f9bf02-735a-11e9-85aa-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628830,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [764f4021-a0ce-418f-919d-46dd8e8416bd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1210f768-735a-11e9-b393-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516628825,"modificationTime":1557516628910,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a26193dc-f39c-4be1-b051-9138fa96935d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c0ac3cc-735a-11e9-8b82-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:45 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8bc8bc73-882e-4947-a8cd-ac00c5f82c9f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c22c524-735a-11e9-a7b5-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516626712,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516626968,"modificationTime":1557516628002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516628245,"modificationTime":1557516628245,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [217eeec0-6560-445e-9d73-851ecc7d109e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1c66cd12-735a-11e9-a405-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625023,"modificationTime":1557516625035,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625377,"modificationTime":1557516626364,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516626707,"modificationTime":1557516626785,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b7e937b2-a37d-4e33-9ce6-88cf817eece3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1cac82f8-735a-11e9-b8fc-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516628825,"modificationTime":1557516628910,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [66c169f1-f0ce-44c2-85ae-e2b308d580ca] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1ca5722e-735a-11e9-9abe-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516626712,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516626968,"modificationTime":1557516628002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516628245,"modificationTime":1557516628245,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c14cf869-44c3-4f8c-9483-2eea138d4bbe] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1da3f23e-735a-11e9-99f8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e737aa5e-c62a-4425-ac66-d385d29691a1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1dbad7e6-735a-11e9-8ff7-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e277f069-9cb8-4db2-9fa7-7c89e873692f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1dd1ed5e-735a-11e9-802e-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [204c69ff-03b9-4827-bb08-4d8b1256108d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1de8eac6-735a-11e9-9f0a-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1ae3001b-f625-4fc4-aa06-38c344b1003b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e0000cc-735a-11e9-a63b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb8c557a-c2d0-4aec-ac40-98f444dbf663] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e16e74a-735a-11e9-bb1e-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6b36c3e9-6df6-41fb-ada1-6fc55fa99658] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e2dfbac-735a-11e9-9edd-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [de7300f3-a904-4156-8f10-10fd76bc95eb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e44e628-735a-11e9-bf00-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [12719f3d-a4ff-44fa-9b07-1f16dea52b23] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e5bf79a-735a-11e9-a569-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bdba4117-8c15-4136-96d3-ffd783291edb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e72f808-735a-11e9-b4d1-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [84dba9a5-a1e6-4741-86b3-c6a98ae47d99] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1e89f54a-735a-11e9-b1a4-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6fe02b61-6753-496d-a139-ab76e09d03db] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1ea0d382-735a-11e9-b4da-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [83721b96-11b0-4200-9ea3-a7fd0968748e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1eb8051a-735a-11e9-ab11-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [be65f9c2-818f-45ed-ae37-d527716729fc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [1ecf3252-735a-11e9-8b5c-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:30:50 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ad54e40d-c570-4287-9b09-59992fec46b8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [28ba70fa-735a-11e9-98d2-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [44306c74-f57f-4a5c-996e-3302a7e50a01] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [28d36968-735a-11e9-b1ce-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516626712,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516626968,"modificationTime":1557516628002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516628245,"modificationTime":1557516628245,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c51e2d5-a3d3-4ea4-a1fe-7665e3510b2d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2918279e-735a-11e9-a566-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625023,"modificationTime":1557516625035,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516625377,"modificationTime":1557516626364,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516626707,"modificationTime":1557516626785,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [51317ba8-c77a-41ed-bf1e-a4270cd9c891] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [29567478-735a-11e9-aeb0-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516628825,"modificationTime":1557516628910,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [793be715-2f59-497f-85e6-4dc979687d69] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [29668b1c-735a-11e9-9af7-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516626712,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516626968,"modificationTime":1557516628002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516628245,"modificationTime":1557516628245,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516628396,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c3541e5a-0bb3-4b32-bf40-7c4f3e5e93e8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2a50cb58-735a-11e9-b8c6-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2d89b5bf-5299-473c-8603-e10f4612be75] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2a68a236-735a-11e9-8366-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0d802c83-55ea-4245-9c4e-f2600e4fbe64] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2a7fd582-735a-11e9-b081-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5ad43344-1dea-4bdb-a3c7-3ec0f8a53527] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2a96c006-735a-11e9-b281-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3c84d711-cc78-474b-900f-6a95ca3e3156] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2aadd050-735a-11e9-9ccd-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [18775b6b-620f-4576-9f77-f2fd89291b1a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2ac6cc34-735a-11e9-a1ba-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3e33a37c-1785-4a17-9c60-2d5c90d8cb0a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2addc8f6-735a-11e9-8608-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2311d55f-d8fb-4274-9502-5d7d2638e24a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2af516a6-735a-11e9-8e29-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [585ff2e0-4c14-4446-af5c-6164c19aeb4b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b0c3a88-735a-11e9-8326-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [483638c1-8a2a-436d-a3d4-4f27b2758133] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b236c80-735a-11e9-ac96-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6f56fa1b-9543-4768-8c25-dffe6ed5fb94] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b3aa27a-735a-11e9-9bec-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5cdb719c-aeac-48bf-98bc-8ea16e71c750] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b51b092-735a-11e9-a91f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d963f30a-b8ed-4e3e-bb28-e5c758bd3fea] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b6d30b0-735a-11e9-a017-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3c52cbe4-6abe-4889-a1d1-21009e71c472] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b848286-735a-11e9-a9b8-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MSGETACLSTATUS&api-version=2018-09-01 - response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2cb5a44e-1fbd-4490-b75d-a20b579bc4e8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2b9bcfa4-735a-11e9-9caa-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5dc8099a-bf06-47c6-94f1-2ae31aa854d4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2bb36b48-735a-11e9-883b-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1557516624713,"modificationTime":1557516628396,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1eb41e50-b9a5-4c10-9d7e-ae1b1ea04811] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2bcb0598-735a-11e9-80fd-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c8ed7c12-93eb-11eb-ad55-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=09d63de1-df3a-4812-b257-7523f9ab525c&filesessionid=09d63de1-df3a-4812-b257-7523f9ab525c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 59cc9b23-3fe3-45e5-a3b5-63598e940bf7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c90a2bcc-93eb-11eb-a96a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 121455f4-dfd5-4278-aa04-ab32f166c303 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c922e7f6-93eb-11eb-b64d-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392643801,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392644126,"modificationTime":1617392645463,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392645818,"modificationTime":1617392645818,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392645961,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 464e10ef-8830-4103-a52a-bb7e6ed290c1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c938b564-93eb-11eb-8995-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392642755,"modificationTime":1617392642906,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392643261,"modificationTime":1617392643438,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392643797,"modificationTime":1617392643953,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1c0b5b37-1ae4-4899-bf50-926c83140a9f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c94fbfb4-93eb-11eb-ae7e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392644447,"modificationTime":1617392644609,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392644932,"modificationTime":1617392645109,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392645459,"modificationTime":1617392645625,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bccc4fab-101f-40fa-8317-caec04c25984 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c966b438-93eb-11eb-add6-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f0180142-ff26-4976-a50b-a5c9ac1dd863 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c9802fec-93eb-11eb-ab6d-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392645961,"modificationTime":1617392646290,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 68375041-5d85-4b86-a37e-abd20beb82f5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - c996a268-93eb-11eb-ac49-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392646286,"modificationTime":1617392646437,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2a320921-1641-485e-ba33-bddcd907ad84 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ccfcf7e6-93eb-11eb-9def-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cb3cebe9-8853-4b7f-9007-8c5f5dbb856a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - cd1254a2-93eb-11eb-82f1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392643801,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392644126,"modificationTime":1617392645463,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392645818,"modificationTime":1617392645818,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392645961,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1e177f77-8ee0-482c-a5cc-c28848ac54e2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - cd83ffee-93eb-11eb-b5fa-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392642755,"modificationTime":1617392642906,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392643261,"modificationTime":1617392643438,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392643797,"modificationTime":1617392643953,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cbc41e77-e860-4fb7-ba30-36f42604c5e5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ce8e45d2-93eb-11eb-9794-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392646286,"modificationTime":1617392646437,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9f150e3a-048a-440c-bc46-0d9de934e81f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - cfdb9c3a-93eb-11eb-818a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - adeb61ef-002e-4861-af69-5f0cf4530544 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - cff187e6-93eb-11eb-8b4a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cddaade7-4aad-4a75-82fb-f3d43379f8ed + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d0082c92-93eb-11eb-b968-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d9b69391-285c-4682-b564-32e451e7dff7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d01ec1ba-93eb-11eb-b552-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5a230d77-5b90-40d9-87c7-b6e0c915a2c8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d034953a-93eb-11eb-b4d3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6bff22ff-196c-496a-bc44-12a101593bac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d04d4d4a-93eb-11eb-9bce-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9b27aa12-c2a2-4a1b-9407-b5e5f571146c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d066a2ca-93eb-11eb-8418-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e589e5d1-8aba-40ac-912c-4372f953f28d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d080ee6e-93eb-11eb-a11c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d38b6ffb-1050-4334-89dd-7e5f65b7b4b5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d09a3c9c-93eb-11eb-9ffe-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 937b92a7-ff2e-4730-bf39-c586ecfb0336 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d0b2f2d2-93eb-11eb-aca0-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 275843ee-efc6-491b-87ba-e4e946efed06 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d0c8c5b0-93eb-11eb-a3b5-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 51fa5358-c7d7-44e3-9b8c-aa36fb5564dc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d0dfcdd2-93eb-11eb-b7f1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cddc4c8e-ff9e-4e23-ad1e-9405d2517b2a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d0f61724-93eb-11eb-8a70-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 80267e1d-9672-4d63-8374-81b064a3a100 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d10c0e00-93eb-11eb-a66e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2b10973b-a29b-41ec-be61-2af31adceda3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4324ade-93eb-11eb-ab76-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a4f8386a-c5ef-480a-b5b4-8dd2af15f0a9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4473250-93eb-11eb-a25f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392643801,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392644126,"modificationTime":1617392645463,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392645818,"modificationTime":1617392645818,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392645961,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 77524506-2dd4-4a55-a4ff-53bd37f20564 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d4b2ef4c-93eb-11eb-a071-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392642755,"modificationTime":1617392642906,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392643261,"modificationTime":1617392643438,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392643797,"modificationTime":1617392643953,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b27ec8a0-12fa-420f-82c7-40f310721ee4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d59ca264-93eb-11eb-a4da-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392646286,"modificationTime":1617392646437,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c253982a-ca00-4cd3-8a33-a19bf2088b65 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6b345e8-93eb-11eb-8659-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f94b1fd6-cd3f-4e26-8646-ed34edc046f2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6cad2c0-93eb-11eb-b630-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 79ec7448-cc89-4299-b5c9-b53b1c219c0b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6e02f74-93eb-11eb-923a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2809286e-e9f2-412a-b5bd-c443eeb88e7e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d6f58e5c-93eb-11eb-88f9-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 232a7154-4010-4050-8aaa-f2001ae7f297 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d709c606-93eb-11eb-910f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ee5847dd-2735-42c4-bf25-823e1c5d35ae + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d71d9c24-93eb-11eb-8a96-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6959fe7f-2baf-45fb-a59b-f01492b7cc11 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7320e6e-93eb-11eb-8423-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9c717b07-a0c1-4326-ac77-23b32a6b702c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d749555e-93eb-11eb-b157-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - db8e39bc-87f5-4192-9e6a-914e268a8592 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d76086f0-93eb-11eb-b8d5-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d24a2512-1482-4a92-90ff-6b6566d70015 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d77662a8-93eb-11eb-8589-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ef6a1c3e-1292-4d85-9a86-7d104fceac31 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d78f1cd2-93eb-11eb-b4dd-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 86d56e7f-2dc7-4da4-a238-74cee6c08e41 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7a513e2-93eb-11eb-b2f1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65e5305b-0de5-47c9-89f6-9b0702c5a774 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7bb81ec-93eb-11eb-a436-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 017c35f7-2c3c-42c1-8257-d77e7f58b91a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7d12c9e-93eb-11eb-b5af-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1eb2c60b-f0cd-4540-a6ae-e98371fbc40d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7e79ca6-93eb-11eb-a983-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b3af0c74-1b03-4073-9cf9-ae6cf5cbef56 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d7fe0140-93eb-11eb-bdf6-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392642439,"modificationTime":1617392645961,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eb5c189b-8d9a-4cb2-b77f-a471b3761833 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d813aa08-93eb-11eb-87a6-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [52bf0fe4-5b11-4156-8c18-6fdbfd69c710] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2be5f5d2-735a-11e9-bc1f-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fd0e3399-f612-4692-9c25-1bbaca95a20d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2bfd81c0-735a-11e9-b634-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516623719,"modificationTime":1557516623739,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e1810cf6-b3d4-4578-9e8b-5a184299727c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c138ad0-735a-11e9-80e9-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 64aae0d5-58b8-43c4-907b-58d9c36a1200 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d82cadf4-93eb-11eb-93dd-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8462a8dd-fb76-4e32-a23e-bf1c9bb39a0a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8408662-93eb-11eb-bae8-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392641068,"modificationTime":1617392641235,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dedf07f5-2320-4770-ac4b-2178d7828127 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d859dad0-93eb-11eb-93d8-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [263dc041-127a-40e8-a146-159595e493fb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c2de906-735a-11e9-aaef-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['644'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4c24a7a2-228a-4f56-958a-0dc251c5fc83] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c47a9d8-735a-11e9-8c7c-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516624066,"modificationTime":1557516624114,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dd7954b7-56d6-42ab-bbcf-b4bbb959b2a9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c5dd762-735a-11e9-9d8a-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d8d1591f-747e-46c2-802d-c008efd565f9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8754ff4-93eb-11eb-8b67-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2cf5cb27-8628-457b-8a52-8a0eeeeb1f9c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d88be750-93eb-11eb-a601-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392641583,"modificationTime":1617392641750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ca5e6b5f-45e6-400b-8032-c916a7bc8ee5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8a0c8cc-93eb-11eb-8bbd-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d3fc8679-e66e-484e-a8e6-a78cbd078fe7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c789852-735a-11e9-ade5-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 - response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['350'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [27a7ade4-e81d-4735-90fe-6a1ce97cb6a6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2c8ff2c8-735a-11e9-ab23-480fcf66f040.0] - method: GET - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 - response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516624448,"modificationTime":1557516624535,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} - headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [adfe6e37-4bb5-4cf7-a38e-08c2d675f35e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} -- request: - body: null - headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [2ca9f286-735a-11e9-863d-480fcf66f040.0] + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5a4afd18-52ae-414d-8e25-da1bc60574d3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8b8dc40-93eb-11eb-a444-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2ce38f10-c6fe-404d-a960-13d82bd2e218 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8cf4cd8-93eb-11eb-a9ee-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392642111,"modificationTime":1617392642266,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 19b13028-3146-4cc2-a7c0-e4383fa379a7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - d8e4804a-93eb-11eb-b5d2-186024804fa8.0 method: DELETE - uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir7377fd38-ad76-4cd6-9e19-88fc2590cbf9/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e6385c27-e2e0-4321-90db-6bff1a800436] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:44:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3812c4ef-5d39-4aa6-a802-b1fd63f3f762 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK version: 1 diff -Nru azure-data-lake-store-python-0.0.51/tests/recordings/test_multithread/test_remove_acl_entries_recursive.yaml azure-data-lake-store-python-0.0.52/tests/recordings/test_multithread/test_remove_acl_entries_recursive.yaml --- azure-data-lake-store-python-0.0.51/tests/recordings/test_multithread/test_remove_acl_entries_recursive.yaml 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/tests/recordings/test_multithread/test_remove_acl_entries_recursive.yaml 2021-04-02 20:17:17.000000000 +0000 @@ -2,8543 +2,21769 @@ - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47985966-e6d6-11e8-95e1-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47985966-e6d6-11e8-95e1-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c3340d4c-a635-4dfe-9ba1-87d172e7e5ac] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c3340d4c-a635-4dfe-9ba1-87d172e7e5ac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [479f8080-e6d6-11e8-9dbc-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 479f8080-e6d6-11e8-9dbc-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv - [a5eadd60-b63a-4d5f-a497-e514d53a8ab7][2018-11-12T15:54:23.3853916-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [a5eadd60-b63a-4d5f-a497-e514d53a8ab7][2018-11-12T15:54:23.3853916-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a5eadd60-b63a-4d5f-a497-e514d53a8ab7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a5eadd60-b63a-4d5f-a497-e514d53a8ab7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47a4458a-e6d6-11e8-bed4-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47a4458a-e6d6-11e8-bed4-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=62a32d51-80c1-4614-b449-77086181d3f9&filesessionid=62a32d51-80c1-4614-b449-77086181d3f9 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=62a32d51-80c1-4614-b449-77086181d3f9&filesessionid=62a32d51-80c1-4614-b449-77086181d3f9'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6ae7b598-6cc8-48b2-8227-f7435cc2c4b4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=62a32d51-80c1-4614-b449-77086181d3f9&filesessionid=62a32d51-80c1-4614-b449-77086181d3f9 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6ae7b598-6cc8-48b2-8227-f7435cc2c4b4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47bedd00-e6d6-11e8-ab38-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47bedd00-e6d6-11e8-ab38-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv - [01515f75-fc9b-42a4-b837-bbc724fc8b6f][2018-11-12T15:54:23.5885198-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [01515f75-fc9b-42a4-b837-bbc724fc8b6f][2018-11-12T15:54:23.5885198-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [01515f75-fc9b-42a4-b837-bbc724fc8b6f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 01515f75-fc9b-42a4-b837-bbc724fc8b6f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47c141cc-e6d6-11e8-bd0c-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47c141cc-e6d6-11e8-bd0c-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=33bbcd21-f063-4536-a64a-3de3f7ce4689&filesessionid=33bbcd21-f063-4536-a64a-3de3f7ce4689 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=33bbcd21-f063-4536-a64a-3de3f7ce4689&filesessionid=33bbcd21-f063-4536-a64a-3de3f7ce4689'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c22f6523-96d2-4467-9147-d829b04ed243] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=33bbcd21-f063-4536-a64a-3de3f7ce4689&filesessionid=33bbcd21-f063-4536-a64a-3de3f7ce4689 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c22f6523-96d2-4467-9147-d829b04ed243 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47db7cba-e6d6-11e8-9324-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47db7cba-e6d6-11e8-9324-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt - [b41cbbae-7c10-445b-84c0-bfc5dbada40c][2018-11-12T15:54:23.7760236-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [b41cbbae-7c10-445b-84c0-bfc5dbada40c][2018-11-12T15:54:23.7760236-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b41cbbae-7c10-445b-84c0-bfc5dbada40c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b41cbbae-7c10-445b-84c0-bfc5dbada40c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47dddce4-e6d6-11e8-8347-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47dddce4-e6d6-11e8-8347-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=554364a2-08e6-4917-a7ac-7cd93fe46b25&filesessionid=554364a2-08e6-4917-a7ac-7cd93fe46b25 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=554364a2-08e6-4917-a7ac-7cd93fe46b25&filesessionid=554364a2-08e6-4917-a7ac-7cd93fe46b25'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ea91db75-58d1-41c5-b1f0-6510830f1788] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=554364a2-08e6-4917-a7ac-7cd93fe46b25&filesessionid=554364a2-08e6-4917-a7ac-7cd93fe46b25 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ea91db75-58d1-41c5-b1f0-6510830f1788 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47f35336-e6d6-11e8-a6d4-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47f35336-e6d6-11e8-a6d4-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [481e2206-a062-4a71-8186-3c58b93e4d26] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 481e2206-a062-4a71-8186-3c58b93e4d26 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47f8171c-e6d6-11e8-a842-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47f8171c-e6d6-11e8-a842-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv - [ff2ed7a7-e4c5-418b-ae82-9d3e54dd891e][2018-11-12T15:54:23.9635262-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [ff2ed7a7-e4c5-418b-ae82-9d3e54dd891e][2018-11-12T15:54:23.9635262-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ff2ed7a7-e4c5-418b-ae82-9d3e54dd891e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ff2ed7a7-e4c5-418b-ae82-9d3e54dd891e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [47fa7a4a-e6d6-11e8-8c2e-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 47fa7a4a-e6d6-11e8-8c2e-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=eb0f6815-6cf8-4110-937d-f516d259da1d&filesessionid=eb0f6815-6cf8-4110-937d-f516d259da1d response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=eb0f6815-6cf8-4110-937d-f516d259da1d&filesessionid=eb0f6815-6cf8-4110-937d-f516d259da1d'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e9e0b847-bd7b-4551-bea3-f05eeb5b00b9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=eb0f6815-6cf8-4110-937d-f516d259da1d&filesessionid=eb0f6815-6cf8-4110-937d-f516d259da1d + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e9e0b847-bd7b-4551-bea3-f05eeb5b00b9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4814b552-e6d6-11e8-8506-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4814b552-e6d6-11e8-8506-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv - [0da78c37-bbf4-46b8-b8b2-cd1072549aaa][2018-11-12T15:54:24.1510304-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [0da78c37-bbf4-46b8-b8b2-cd1072549aaa][2018-11-12T15:54:24.1510304-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0da78c37-bbf4-46b8-b8b2-cd1072549aaa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0da78c37-bbf4-46b8-b8b2-cd1072549aaa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4817157e-e6d6-11e8-8ead-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4817157e-e6d6-11e8-8ead-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28&filesessionid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28&filesessionid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dca017b7-4e80-46d0-8a7e-952ca809010a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28&filesessionid=1ead6a5b-c3ab-43cd-a9fa-ac87c3e8bf28 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dca017b7-4e80-46d0-8a7e-952ca809010a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4833b346-e6d6-11e8-a8b3-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4833b346-e6d6-11e8-a8b3-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt - [eed57449-0746-46b5-8e3f-5723a3384811][2018-11-12T15:54:24.3541578-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [eed57449-0746-46b5-8e3f-5723a3384811][2018-11-12T15:54:24.3541578-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [eed57449-0746-46b5-8e3f-5723a3384811] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eed57449-0746-46b5-8e3f-5723a3384811 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [483614e6-e6d6-11e8-97c4-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 483614e6-e6d6-11e8-97c4-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a2afcbc-bf87-4c66-b011-a5125c2ac259&filesessionid=3a2afcbc-bf87-4c66-b011-a5125c2ac259 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a2afcbc-bf87-4c66-b011-a5125c2ac259&filesessionid=3a2afcbc-bf87-4c66-b011-a5125c2ac259'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a0e2401f-3999-46f4-95e8-08a3853e8cc1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3a2afcbc-bf87-4c66-b011-a5125c2ac259&filesessionid=3a2afcbc-bf87-4c66-b011-a5125c2ac259 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a0e2401f-3999-46f4-95e8-08a3853e8cc1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [484df002-e6d6-11e8-b520-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 484df002-e6d6-11e8-b520-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ba07ffc8-b89b-4c3d-82f6-7d2a873c658c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ba07ffc8-b89b-4c3d-82f6-7d2a873c658c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4852b136-e6d6-11e8-ac4a-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4852b136-e6d6-11e8-ac4a-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv - [97c01d0a-98c6-4acb-96ce-390ec422abd4][2018-11-12T15:54:24.5572856-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [97c01d0a-98c6-4acb-96ce-390ec422abd4][2018-11-12T15:54:24.5572856-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [97c01d0a-98c6-4acb-96ce-390ec422abd4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 97c01d0a-98c6-4acb-96ce-390ec422abd4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [485513ae-e6d6-11e8-bfec-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 485513ae-e6d6-11e8-bfec-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8885f269-bd4f-4594-a5b8-43929c0475be&filesessionid=8885f269-bd4f-4594-a5b8-43929c0475be response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8885f269-bd4f-4594-a5b8-43929c0475be&filesessionid=8885f269-bd4f-4594-a5b8-43929c0475be'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4702fb59-b7ec-4aa0-8411-ed317bcad702] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8885f269-bd4f-4594-a5b8-43929c0475be&filesessionid=8885f269-bd4f-4594-a5b8-43929c0475be + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4702fb59-b7ec-4aa0-8411-ed317bcad702 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4865c562-e6d6-11e8-972d-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4865c562-e6d6-11e8-972d-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv - [c7f8f835-5086-4a71-801e-1302ffee1524][2018-11-12T15:54:24.6822888-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [c7f8f835-5086-4a71-801e-1302ffee1524][2018-11-12T15:54:24.6822888-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c7f8f835-5086-4a71-801e-1302ffee1524] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c7f8f835-5086-4a71-801e-1302ffee1524 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48682648-e6d6-11e8-a840-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48682648-e6d6-11e8-a840-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8e3f27a4-9257-4a01-aa81-4c21faaf1145&filesessionid=8e3f27a4-9257-4a01-aa81-4c21faaf1145 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8e3f27a4-9257-4a01-aa81-4c21faaf1145&filesessionid=8e3f27a4-9257-4a01-aa81-4c21faaf1145'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d167dcdc-8be9-46a4-9478-cc189adfdff3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8e3f27a4-9257-4a01-aa81-4c21faaf1145&filesessionid=8e3f27a4-9257-4a01-aa81-4c21faaf1145 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d167dcdc-8be9-46a4-9478-cc189adfdff3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4884ca88-e6d6-11e8-96eb-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4884ca88-e6d6-11e8-96eb-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt - [dabf6560-6c5e-4d7d-b2ef-87310cfbc02a][2018-11-12T15:54:24.8854158-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [dabf6560-6c5e-4d7d-b2ef-87310cfbc02a][2018-11-12T15:54:24.8854158-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dabf6560-6c5e-4d7d-b2ef-87310cfbc02a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dabf6560-6c5e-4d7d-b2ef-87310cfbc02a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48872da4-e6d6-11e8-a5f8-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48872da4-e6d6-11e8-a5f8-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb&filesessionid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb&filesessionid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c23b2e11-a712-44c7-91f9-998833169f7f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb&filesessionid=9ff3a2fa-7461-415c-b7be-b9a7efe543bb + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c23b2e11-a712-44c7-91f9-998833169f7f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48aaf036-e6d6-11e8-b5db-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48aaf036-e6d6-11e8-b5db-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/empty?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5f2b6773-17d4-4c01-95d7-804ad333c019] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5f2b6773-17d4-4c01-95d7-804ad333c019 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48afb680-e6d6-11e8-b8be-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48afb680-e6d6-11e8-b8be-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9c0d07e7-1892-4fdb-81c0-4a7e1dbcab8f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9c0d07e7-1892-4fdb-81c0-4a7e1dbcab8f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48b47af0-e6d6-11e8-a140-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48b47af0-e6d6-11e8-a140-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt - [9f7c33d6-71f9-46bd-a922-7f367d85465d][2018-11-12T15:54:25.1979211-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [9f7c33d6-71f9-46bd-a922-7f367d85465d][2018-11-12T15:54:25.1979211-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9f7c33d6-71f9-46bd-a922-7f367d85465d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9f7c33d6-71f9-46bd-a922-7f367d85465d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48b6dc10-e6d6-11e8-8f02-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48b6dc10-e6d6-11e8-8f02-000d3a02e7d7.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b2b52923-fa0b-4302-b745-12d0c46519b8&filesessionid=b2b52923-fa0b-4302-b745-12d0c46519b8 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Mon, 12 Nov 2018 23:54:25 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b2b52923-fa0b-4302-b745-12d0c46519b8&filesessionid=b2b52923-fa0b-4302-b745-12d0c46519b8'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3fb213fe-0e4d-4d0d-8313-71d6f6e1f22f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Mon, 12 Nov 2018 23:54:25 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b2b52923-fa0b-4302-b745-12d0c46519b8&filesessionid=b2b52923-fa0b-4302-b745-12d0c46519b8 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3fb213fe-0e4d-4d0d-8313-71d6f6e1f22f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4975974c-e6d6-11e8-8177-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4975974c-e6d6-11e8-8177-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c873d7d9-0ddf-4f46-8208-becbdb636266] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1188' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c873d7d9-0ddf-4f46-8208-becbdb636266 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [497a5c06-e6d6-11e8-95ef-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 497a5c06-e6d6-11e8-95ef-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066864413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066864532,"modificationTime":1542066864952,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066865143,"modificationTime":1542066865143,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066864413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066864532,"modificationTime":1542066864952,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066865143,"modificationTime":1542066865143,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dfb9efdf-6207-4d13-843b-ce88970aba6b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1110' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dfb9efdf-6207-4d13-843b-ce88970aba6b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [498647c0-e6d6-11e8-bd49-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 498647c0-e6d6-11e8-bd49-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863995,"modificationTime":1542066864057,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864187,"modificationTime":1542066864276,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864388,"modificationTime":1542066864447,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863995,"modificationTime":1542066864057,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864187,"modificationTime":1542066864276,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864388,"modificationTime":1542066864447,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [69a43dbc-138e-49cf-a527-09f723456444] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '918' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 69a43dbc-138e-49cf-a527-09f723456444 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [498fd134-e6d6-11e8-a333-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 498fd134-e6d6-11e8-a333-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066865234,"modificationTime":1542066865260,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066865234,"modificationTime":1542066865260,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3e588144-b4a4-4776-b402-fe3f2bcb3775] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '333' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3e588144-b4a4-4776-b402-fe3f2bcb3775 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49ac6f74-e6d6-11e8-adf6-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49ac6f74-e6d6-11e8-adf6-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [03183424-7b52-43bc-9288-b556c16de225] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 03183424-7b52-43bc-9288-b556c16de225 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49b133e4-e6d6-11e8-82be-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49b133e4-e6d6-11e8-82be-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066864413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066864532,"modificationTime":1542066864952,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066865143,"modificationTime":1542066865143,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066864413,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1542066864532,"modificationTime":1542066864952,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1542066865143,"modificationTime":1542066865143,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e3084bbd-d432-49d6-887b-708f30f81c30] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1106' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e3084bbd-d432-49d6-887b-708f30f81c30 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49b5f722-e6d6-11e8-b044-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49b5f722-e6d6-11e8-b044-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863995,"modificationTime":1542066864057,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864187,"modificationTime":1542066864276,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864388,"modificationTime":1542066864447,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863995,"modificationTime":1542066864057,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864187,"modificationTime":1542066864276,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864388,"modificationTime":1542066864447,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [215c5515-fab4-4664-b72d-4847c794ea5a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 215c5515-fab4-4664-b72d-4847c794ea5a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49babe06-e6d6-11e8-8770-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49babe06-e6d6-11e8-8770-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864590,"modificationTime":1542066864619,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864717,"modificationTime":1542066864807,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864920,"modificationTime":1542066865041,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864590,"modificationTime":1542066864619,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066864717,"modificationTime":1542066864807,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066864920,"modificationTime":1542066865041,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ca66ef9b-942b-4913-8e85-02e148980bf1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ca66ef9b-942b-4913-8e85-02e148980bf1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49bd1e98-e6d6-11e8-b405-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49bd1e98-e6d6-11e8-b405-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/empty?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['34'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3ab4a55b-7e64-4dcb-bdf0-b44139ca6cd6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '34' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3ab4a55b-7e64-4dcb-bdf0-b44139ca6cd6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49c1e4c8-e6d6-11e8-9afb-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49c1e4c8-e6d6-11e8-9afb-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865242,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1542066865175,"modificationTime":1542066865242,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [abfc6d73-6a4b-43d4-a6ce-2e97fa43749a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - abfc6d73-6a4b-43d4-a6ce-2e97fa43749a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49c448ae-e6d6-11e8-a430-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49c448ae-e6d6-11e8-a430-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066865234,"modificationTime":1542066865260,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1542066865234,"modificationTime":1542066865260,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['332'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [18a3ef49-91a4-4388-9c67-d0f75200352d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '332' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 18a3ef49-91a4-4388-9c67-d0f75200352d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49c90b3e-e6d6-11e8-9afc-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49c90b3e-e6d6-11e8-9afc-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2b462faf-a1aa-497a-a734-6770f5ed874e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2b462faf-a1aa-497a-a734-6770f5ed874e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49cdd06c-e6d6-11e8-a11c-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49cdd06c-e6d6-11e8-a11c-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cfd78ebc-a438-447e-b6c7-048cc5430295] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cfd78ebc-a438-447e-b6c7-048cc5430295 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49d03128-e6d6-11e8-a9cd-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49d03128-e6d6-11e8-a9cd-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [40a534a1-ab9d-4742-bf50-e2c773e8c17e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 40a534a1-ab9d-4742-bf50-e2c773e8c17e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49d4f6f6-e6d6-11e8-9988-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49d4f6f6-e6d6-11e8-9988-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [af14e32d-bc9c-4074-8335-8a745063ad3b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - af14e32d-bc9c-4074-8335-8a745063ad3b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49d75994-e6d6-11e8-bde5-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49d75994-e6d6-11e8-bde5-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cdef7491-423a-4fee-83c3-be08e8461f25] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cdef7491-423a-4fee-83c3-be08e8461f25 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49dc1dae-e6d6-11e8-ba21-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49dc1dae-e6d6-11e8-ba21-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c3f1c10a-b380-4bf0-b7ca-de8cefa3d754] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c3f1c10a-b380-4bf0-b7ca-de8cefa3d754 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49de807a-e6d6-11e8-a105-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49de807a-e6d6-11e8-a105-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [037b7f38-6df6-4854-aa4c-bac01b58169e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 037b7f38-6df6-4854-aa4c-bac01b58169e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49e343c6-e6d6-11e8-991b-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49e343c6-e6d6-11e8-991b-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1a92cd48-69ff-4152-b4cd-b8b2656e7a77] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1a92cd48-69ff-4152-b4cd-b8b2656e7a77 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49e80988-e6d6-11e8-a3fb-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49e80988-e6d6-11e8-a3fb-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [faa79ab0-43a2-4ef6-87fe-69dd6924c1ed] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - faa79ab0-43a2-4ef6-87fe-69dd6924c1ed + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49ea6d80-e6d6-11e8-9263-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49ea6d80-e6d6-11e8-9263-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [72402de4-1b64-49b0-be24-7377a3462cdd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 72402de4-1b64-49b0-be24-7377a3462cdd + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49ef2fd0-e6d6-11e8-b873-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49ef2fd0-e6d6-11e8-b873-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [34518fe4-6074-4a9c-ae05-d654802c73bb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 34518fe4-6074-4a9c-ae05-d654802c73bb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49f192cc-e6d6-11e8-ad34-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49f192cc-e6d6-11e8-ad34-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [05c01931-4aeb-46f5-9ccd-3fc197ce6f21] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 05c01931-4aeb-46f5-9ccd-3fc197ce6f21 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49f3f594-e6d6-11e8-8e3b-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49f3f594-e6d6-11e8-8e3b-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9882b446-7e70-41a6-a1cc-2722721bce86] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9882b446-7e70-41a6-a1cc-2722721bce86 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49f8bb86-e6d6-11e8-8b19-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49f8bb86-e6d6-11e8-8b19-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a686e28e-1377-4653-9df9-87deb49e8593] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a686e28e-1377-4653-9df9-87deb49e8593 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4aa6c62e-e6d6-11e8-8d6a-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4aa6c62e-e6d6-11e8-8d6a-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f8652a8e-b0f5-4a49-9b9a-5847694651c9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f8652a8e-b0f5-4a49-9b9a-5847694651c9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4add9c46-e6d6-11e8-97ab-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4add9c46-e6d6-11e8-97ab-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6016e69f-c6ff-48cf-ae05-3e7547917c6d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6016e69f-c6ff-48cf-ae05-3e7547917c6d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ae72638-e6d6-11e8-8c72-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ae72638-e6d6-11e8-8c72-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c10ccbbf-769c-49bf-b272-660f20dfbc90] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c10ccbbf-769c-49bf-b272-660f20dfbc90 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ae98798-e6d6-11e8-8766-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ae98798-e6d6-11e8-8766-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e5035de0-611d-46ef-a410-00b5bda6995b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e5035de0-611d-46ef-a410-00b5bda6995b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4aee4c80-e6d6-11e8-8688-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4aee4c80-e6d6-11e8-8688-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cef997df-1651-47f8-bbff-f7ffec7c7204] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cef997df-1651-47f8-bbff-f7ffec7c7204 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4af0aee2-e6d6-11e8-a05e-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4af0aee2-e6d6-11e8-a05e-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [259346d2-f9c1-4232-a7cf-a2e44b1e85e9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 259346d2-f9c1-4232-a7cf-a2e44b1e85e9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4af572dc-e6d6-11e8-aceb-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4af572dc-e6d6-11e8-aceb-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0654d3be-f2f9-4342-8a13-24f343dec8d2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0654d3be-f2f9-4342-8a13-24f343dec8d2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4af7d81e-e6d6-11e8-bac2-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4af7d81e-e6d6-11e8-bac2-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ef89945e-d35a-46ad-9da1-8077ebfc2f43] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ef89945e-d35a-46ad-9da1-8077ebfc2f43 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4afa3700-e6d6-11e8-a726-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4afa3700-e6d6-11e8-a726-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9afd7682-17c0-4ac1-8492-55facbb3131b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9afd7682-17c0-4ac1-8492-55facbb3131b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4afefcc6-e6d6-11e8-9959-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4afefcc6-e6d6-11e8-9959-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f4727233-49bd-4be3-9f31-10c12f880c30] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f4727233-49bd-4be3-9f31-10c12f880c30 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b015de6-e6d6-11e8-8b85-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b015de6-e6d6-11e8-8b85-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0fdb7813-53cb-4648-969f-035c5ebdc455] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0fdb7813-53cb-4648-969f-035c5ebdc455 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b0624a4-e6d6-11e8-aac3-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b0624a4-e6d6-11e8-aac3-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0159c6f2-8cb4-4687-9df0-995648464eec] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0159c6f2-8cb4-4687-9df0-995648464eec + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b0ae8c8-e6d6-11e8-ad2a-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b0ae8c8-e6d6-11e8-ad2a-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a433f7fc-0ff0-4f5b-9be7-7198634a947f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a433f7fc-0ff0-4f5b-9be7-7198634a947f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b0d4a08-e6d6-11e8-a94e-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b0d4a08-e6d6-11e8-a94e-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1121e033-7028-4a40-b7da-ac942510507b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1121e033-7028-4a40-b7da-ac942510507b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b120fd0-e6d6-11e8-af46-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b120fd0-e6d6-11e8-af46-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [23985669-c678-4e1c-b242-b88d2471b326] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 23985669-c678-4e1c-b242-b88d2471b326 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b147142-e6d6-11e8-9fce-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b147142-e6d6-11e8-9fce-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c4ef42ea-5c5d-4628-bd3f-678839548f0b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c4ef42ea-5c5d-4628-bd3f-678839548f0b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b1937d2-e6d6-11e8-89aa-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b1937d2-e6d6-11e8-89aa-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1542066863938,"modificationTime":1542066865175,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9cd20d95-8434-404c-a92f-84c62ffb550c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9cd20d95-8434-404c-a92f-84c62ffb550c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b1b97f6-e6d6-11e8-afd9-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b1b97f6-e6d6-11e8-afd9-000d3a02e7d7.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/data?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d9fd8e4d-2d69-44a0-8a7c-47ebaa544501] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d9fd8e4d-2d69-44a0-8a7c-47ebaa544501 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b25224a-e6d6-11e8-be71-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b25224a-e6d6-11e8-be71-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [56a9a624-d556-490c-9c3b-1a154e2fb587] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 56a9a624-d556-490c-9c3b-1a154e2fb587 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b2783a2-e6d6-11e8-810a-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b2783a2-e6d6-11e8-810a-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863423,"modificationTime":1542066863494,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [15694086-fe62-47b9-bb70-0239b3786aec] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 15694086-fe62-47b9-bb70-0239b3786aec + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b2c4ba8-e6d6-11e8-9858-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b2c4ba8-e6d6-11e8-9858-000d3a02e7d7.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/x.csv?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b852fe75-d4e8-464d-9992-0f6fae92deb2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b852fe75-d4e8-464d-9992-0f6fae92deb2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b336ff8-e6d6-11e8-ba31-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b336ff8-e6d6-11e8-ba31-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['621'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [35a2b1fe-9f1b-4b6f-8442-4505bcca451c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '621' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 35a2b1fe-9f1b-4b6f-8442-4505bcca451c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b383552-e6d6-11e8-b6e7-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b383552-e6d6-11e8-b6e7-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863622,"modificationTime":1542066863682,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [26e5c909-d828-4cd6-825c-f0bd56401ed7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 26e5c909-d828-4cd6-825c-f0bd56401ed7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b3a96a4-e6d6-11e8-a685-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b3a96a4-e6d6-11e8-a685-000d3a02e7d7.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/y.csv?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c46213c0-642c-4caa-80b9-b53634d23c36] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c46213c0-642c-4caa-80b9-b53634d23c36 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b48e636-e6d6-11e8-9d3e-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b48e636-e6d6-11e8-9d3e-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [35f83cd5-6aa9-4b46-aaf0-dfe7971b7b2d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 35f83cd5-6aa9-4b46-aaf0-dfe7971b7b2d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b4b48cc-e6d6-11e8-ba6a-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b4b48cc-e6d6-11e8-ba6a-000d3a02e7d7.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066863831,"modificationTime":1542066863869,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [683ddf24-3a78-4179-88c9-362a241b4cc5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 683ddf24-3a78-4179-88c9-362a241b4cc5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b500b5a-e6d6-11e8-b58b-000d3a02e7d7.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b500b5a-e6d6-11e8-b58b-000d3a02e7d7.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/z.txt?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Mon, 12 Nov 2018 23:54:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [39ae3657-37fc-4845-9829-b0649f8764f7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 12 Nov 2018 23:54:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 39ae3657-37fc-4845-9829-b0649f8764f7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [33fc15b4-25b8-11e9-80c6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 33fc15b4-25b8-11e9-80c6-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bd440eb7-cbc7-4766-b1ff-7f769ce6d5be] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bd440eb7-cbc7-4766-b1ff-7f769ce6d5be + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3437af6e-25b8-11e9-911b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3437af6e-25b8-11e9-911b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv - [1cad8388-1bb1-4106-9324-f39a53004694][2019-01-31T16:27:49.2332573-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [1cad8388-1bb1-4106-9324-f39a53004694][2019-01-31T16:27:49.2332573-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1cad8388-1bb1-4106-9324-f39a53004694] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1cad8388-1bb1-4106-9324-f39a53004694 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [34487f76-25b8-11e9-8475-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 34487f76-25b8-11e9-8475-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4851b398-6f8d-4995-9d25-dee25e5b883d&filesessionid=4851b398-6f8d-4995-9d25-dee25e5b883d response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:48 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4851b398-6f8d-4995-9d25-dee25e5b883d&filesessionid=4851b398-6f8d-4995-9d25-dee25e5b883d'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c959528d-746c-470a-8fa9-17aa4b898a17] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:48 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4851b398-6f8d-4995-9d25-dee25e5b883d&filesessionid=4851b398-6f8d-4995-9d25-dee25e5b883d + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c959528d-746c-470a-8fa9-17aa4b898a17 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3487aa14-25b8-11e9-a5f7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3487aa14-25b8-11e9-a5f7-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv - [3360d713-f7ea-43e2-8411-45c2411f9352][2019-01-31T16:27:49.8895181-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [3360d713-f7ea-43e2-8411-45c2411f9352][2019-01-31T16:27:49.8895181-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3360d713-f7ea-43e2-8411-45c2411f9352] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3360d713-f7ea-43e2-8411-45c2411f9352 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [34aa8d70-25b8-11e9-9b5f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 34aa8d70-25b8-11e9-9b5f-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4e803a10-aab5-4cde-a908-b79f25494b8c&filesessionid=4e803a10-aab5-4cde-a908-b79f25494b8c response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:49 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4e803a10-aab5-4cde-a908-b79f25494b8c&filesessionid=4e803a10-aab5-4cde-a908-b79f25494b8c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2c4b1168-98d9-40ef-ae0b-cf26a973b8f8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:49 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=4e803a10-aab5-4cde-a908-b79f25494b8c&filesessionid=4e803a10-aab5-4cde-a908-b79f25494b8c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2c4b1168-98d9-40ef-ae0b-cf26a973b8f8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [34d525b0-25b8-11e9-a319-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 34d525b0-25b8-11e9-a319-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt - [f6f1b161-a1a0-4460-aeee-88a3eca6578c][2019-01-31T16:27:50.2801492-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [f6f1b161-a1a0-4460-aeee-88a3eca6578c][2019-01-31T16:27:50.2801492-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f6f1b161-a1a0-4460-aeee-88a3eca6578c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f6f1b161-a1a0-4460-aeee-88a3eca6578c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [34e6b526-25b8-11e9-b890-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 34e6b526-25b8-11e9-b890-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=58e177ce-a549-4cef-9a9c-7977a6ab9ded&filesessionid=58e177ce-a549-4cef-9a9c-7977a6ab9ded response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:49 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=58e177ce-a549-4cef-9a9c-7977a6ab9ded&filesessionid=58e177ce-a549-4cef-9a9c-7977a6ab9ded'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fdd357cb-98a8-4774-91eb-5b77506a7da0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:49 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=58e177ce-a549-4cef-9a9c-7977a6ab9ded&filesessionid=58e177ce-a549-4cef-9a9c-7977a6ab9ded + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fdd357cb-98a8-4774-91eb-5b77506a7da0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3534b080-25b8-11e9-9855-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3534b080-25b8-11e9-9855-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6542f1b1-f1df-4628-91b1-9223881b1897] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6542f1b1-f1df-4628-91b1-9223881b1897 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3545fbfa-25b8-11e9-b8b6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3545fbfa-25b8-11e9-b8b6-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv - [6f4cf69d-d81e-4901-a867-babdef97e995][2019-01-31T16:27:51.1083042-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [6f4cf69d-d81e-4901-a867-babdef97e995][2019-01-31T16:27:51.1083042-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6f4cf69d-d81e-4901-a867-babdef97e995] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:51 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6f4cf69d-d81e-4901-a867-babdef97e995 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [35668f38-25b8-11e9-b8ae-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 35668f38-25b8-11e9-b8ae-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f3b40c0-1668-42de-947d-cf08b12b1bef&filesessionid=1f3b40c0-1668-42de-947d-cf08b12b1bef response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:51 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f3b40c0-1668-42de-947d-cf08b12b1bef&filesessionid=1f3b40c0-1668-42de-947d-cf08b12b1bef'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a66dd610-b294-4a01-8fc5-78eec8de4294] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:51 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f3b40c0-1668-42de-947d-cf08b12b1bef&filesessionid=1f3b40c0-1668-42de-947d-cf08b12b1bef + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a66dd610-b294-4a01-8fc5-78eec8de4294 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [358855b8-25b8-11e9-a658-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 358855b8-25b8-11e9-a658-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv - [2169610a-e545-4491-a389-88d8304c85e9][2019-01-31T16:27:51.4520396-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [2169610a-e545-4491-a389-88d8304c85e9][2019-01-31T16:27:51.4520396-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2169610a-e545-4491-a389-88d8304c85e9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:51 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2169610a-e545-4491-a389-88d8304c85e9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [359934f8-25b8-11e9-85c9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 359934f8-25b8-11e9-85c9-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=490b3439-c492-4d97-a874-06e54c111bd3&filesessionid=490b3439-c492-4d97-a874-06e54c111bd3 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:51 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=490b3439-c492-4d97-a874-06e54c111bd3&filesessionid=490b3439-c492-4d97-a874-06e54c111bd3'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5abd7e5d-456b-46ba-b4b0-db0416153e2a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:51 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=490b3439-c492-4d97-a874-06e54c111bd3&filesessionid=490b3439-c492-4d97-a874-06e54c111bd3 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5abd7e5d-456b-46ba-b4b0-db0416153e2a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [35b7d950-25b8-11e9-b841-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 35b7d950-25b8-11e9-b841-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt - [14e1e1f6-861e-4571-a4d5-0d01d9384878][2019-01-31T16:27:51.7645454-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [14e1e1f6-861e-4571-a4d5-0d01d9384878][2019-01-31T16:27:51.7645454-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:51 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [14e1e1f6-861e-4571-a4d5-0d01d9384878] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:51 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 14e1e1f6-861e-4571-a4d5-0d01d9384878 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [35c90df0-25b8-11e9-90a6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 35c90df0-25b8-11e9-90a6-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f9be4e5-54aa-4d70-9692-15c6faabd215&filesessionid=3f9be4e5-54aa-4d70-9692-15c6faabd215 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f9be4e5-54aa-4d70-9692-15c6faabd215&filesessionid=3f9be4e5-54aa-4d70-9692-15c6faabd215'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c32224da-dee1-4f6d-acbf-d28315a9334c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f9be4e5-54aa-4d70-9692-15c6faabd215&filesessionid=3f9be4e5-54aa-4d70-9692-15c6faabd215 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c32224da-dee1-4f6d-acbf-d28315a9334c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [35f14178-25b8-11e9-9628-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 35f14178-25b8-11e9-9628-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cfa0687d-4e59-446f-8ac0-7f61b1c82802] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cfa0687d-4e59-446f-8ac0-7f61b1c82802 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3602f7c6-25b8-11e9-89ba-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3602f7c6-25b8-11e9-89ba-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv - [d1a1eb0d-cd3d-4713-8cac-b9f0430d7edc][2019-01-31T16:27:52.2489274-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [d1a1eb0d-cd3d-4713-8cac-b9f0430d7edc][2019-01-31T16:27:52.2489274-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d1a1eb0d-cd3d-4713-8cac-b9f0430d7edc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d1a1eb0d-cd3d-4713-8cac-b9f0430d7edc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3614168a-25b8-11e9-9a48-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3614168a-25b8-11e9-9a48-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0d910094-815c-4445-a9b9-c5c01cd70699&filesessionid=0d910094-815c-4445-a9b9-c5c01cd70699 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0d910094-815c-4445-a9b9-c5c01cd70699&filesessionid=0d910094-815c-4445-a9b9-c5c01cd70699'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [af2d0374-b654-4767-9681-80d630e9d30e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0d910094-815c-4445-a9b9-c5c01cd70699&filesessionid=0d910094-815c-4445-a9b9-c5c01cd70699 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - af2d0374-b654-4767-9681-80d630e9d30e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3643d72e-25b8-11e9-9528-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3643d72e-25b8-11e9-9528-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv - [65be160b-2afa-4abe-88a8-d4b93d2d78c1][2019-01-31T16:27:52.6708255-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [65be160b-2afa-4abe-88a8-d4b93d2d78c1][2019-01-31T16:27:52.6708255-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [65be160b-2afa-4abe-88a8-d4b93d2d78c1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65be160b-2afa-4abe-88a8-d4b93d2d78c1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36552730-25b8-11e9-9b44-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36552730-25b8-11e9-9b44-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a&filesessionid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:52 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a&filesessionid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9345fa62-596c-4f5e-99c4-ebff14f5513a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:52 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a&filesessionid=ca1ae6f3-eba5-46b2-94be-bb4cff93e34a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9345fa62-596c-4f5e-99c4-ebff14f5513a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3677abb0-25b8-11e9-b946-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3677abb0-25b8-11e9-b946-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt - [0fdb4727-1ef2-4ebf-8a29-7e9dfbc0c0c9][2019-01-31T16:27:53.0145592-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [0fdb4727-1ef2-4ebf-8a29-7e9dfbc0c0c9][2019-01-31T16:27:53.0145592-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0fdb4727-1ef2-4ebf-8a29-7e9dfbc0c0c9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0fdb4727-1ef2-4ebf-8a29-7e9dfbc0c0c9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36891630-25b8-11e9-ba9b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36891630-25b8-11e9-ba9b-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b18a5827-cada-442d-aeb6-8ca42a95cb09&filesessionid=b18a5827-cada-442d-aeb6-8ca42a95cb09 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b18a5827-cada-442d-aeb6-8ca42a95cb09&filesessionid=b18a5827-cada-442d-aeb6-8ca42a95cb09'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ebcb8f84-198f-4393-872f-2d3ae85b9d01] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b18a5827-cada-442d-aeb6-8ca42a95cb09&filesessionid=b18a5827-cada-442d-aeb6-8ca42a95cb09 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ebcb8f84-198f-4393-872f-2d3ae85b9d01 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36a9a378-25b8-11e9-9695-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36a9a378-25b8-11e9-9695-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/empty?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [488bbe56-2c9b-4603-8e13-8a5b243c6258] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 488bbe56-2c9b-4603-8e13-8a5b243c6258 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36bb51c0-25b8-11e9-9703-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36bb51c0-25b8-11e9-9703-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fb2f4ab7-e383-4631-bca7-461510b726dc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fb2f4ab7-e383-4631-bca7-461510b726dc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36cd61a6-25b8-11e9-8413-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36cd61a6-25b8-11e9-8413-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt - [5fb253e9-af23-4826-b40b-e0ed14517729][2019-01-31T16:27:53.5770662-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [5fb253e9-af23-4826-b40b-e0ed14517729][2019-01-31T16:27:53.5770662-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5fb253e9-af23-4826-b40b-e0ed14517729] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5fb253e9-af23-4826-b40b-e0ed14517729 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [36dee05a-25b8-11e9-9824-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 36dee05a-25b8-11e9-9824-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b6c53664-308a-4a29-9a38-8bd5822dfcaa&filesessionid=b6c53664-308a-4a29-9a38-8bd5822dfcaa response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 00:27:53 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b6c53664-308a-4a29-9a38-8bd5822dfcaa&filesessionid=b6c53664-308a-4a29-9a38-8bd5822dfcaa'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [56ba454c-0857-43bf-9278-54ddcdaf4388] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 00:27:53 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=b6c53664-308a-4a29-9a38-8bd5822dfcaa&filesessionid=b6c53664-308a-4a29-9a38-8bd5822dfcaa + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 56ba454c-0857-43bf-9278-54ddcdaf4388 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3d4de770-25b8-11e9-aa02-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3d4de770-25b8-11e9-aa02-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1211'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:04 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3e43d62e-cf0a-42f2-8ec3-2400a32b31a5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1211' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3e43d62e-cf0a-42f2-8ec3-2400a32b31a5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3d6c620a-25b8-11e9-9c86-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3d6c620a-25b8-11e9-9c86-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1133'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:04 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6b9d4afb-2cf7-4134-83bf-9e9a86a99e17] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1133' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6b9d4afb-2cf7-4134-83bf-9e9a86a99e17 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3dbeed08-25b8-11e9-97d5-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3dbeed08-25b8-11e9-97d5-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['941'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:04 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [68a2abf2-a216-44d7-a86f-445fbaaf360f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '941' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 68a2abf2-a216-44d7-a86f-445fbaaf360f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3dfab89a-25b8-11e9-8c21-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3dfab89a-25b8-11e9-8c21-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['356'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:05 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3c64e5b9-fe2c-4c40-b89f-35b4cfd8e4c4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '356' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3c64e5b9-fe2c-4c40-b89f-35b4cfd8e4c4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3ecd7ffe-25b8-11e9-8678-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3ecd7ffe-25b8-11e9-8678-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:06 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7bdb2cbe-fb0a-4a5d-ab24-206800cb7b4d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7bdb2cbe-fb0a-4a5d-ab24-206800cb7b4d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3ee683e2-25b8-11e9-be13-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3ee683e2-25b8-11e9-be13-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [381ed83d-92d4-418b-a085-7b8cf38877a5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 381ed83d-92d4-418b-a085-7b8cf38877a5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3ef87514-25b8-11e9-bdea-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3ef87514-25b8-11e9-bdea-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1fd6a940-2d18-412c-8b1c-d522ed006ce7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1fd6a940-2d18-412c-8b1c-d522ed006ce7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f0af294-25b8-11e9-ae41-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f0af294-25b8-11e9-ae41-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980872442,"modificationTime":1548980872483,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980872809,"modificationTime":1548980872873,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873152,"modificationTime":1548980873170,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980872442,"modificationTime":1548980872483,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980872809,"modificationTime":1548980872873,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873152,"modificationTime":1548980873170,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [85603c4e-8703-41fd-9051-c7613ffd6d41] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 85603c4e-8703-41fd-9051-c7613ffd6d41 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f1d6080-25b8-11e9-b89d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f1d6080-25b8-11e9-b89d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['57'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [44980ced-ab3c-4b1c-bdc3-90cd6e85bd81] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 44980ced-ab3c-4b1c-bdc3-90cd6e85bd81 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f3a7d94-25b8-11e9-b193-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f3a7d94-25b8-11e9-b193-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873731,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873731,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c3557e20-2d45-4e47-9b28-a8cd23e83cb6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c3557e20-2d45-4e47-9b28-a8cd23e83cb6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f5772ee-25b8-11e9-a698-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f5772ee-25b8-11e9-a698-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d8155b09-b94a-4b47-90c6-e3e52d1b0388] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d8155b09-b94a-4b47-90c6-e3e52d1b0388 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f7d36da-25b8-11e9-871a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f7d36da-25b8-11e9-871a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6b47b241-6430-49fb-81d0-31a1009dd0ab] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6b47b241-6430-49fb-81d0-31a1009dd0ab + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f92c11e-25b8-11e9-8ee1-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f92c11e-25b8-11e9-8ee1-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f276af1b-8e81-4695-a314-c24b85b61cc8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f276af1b-8e81-4695-a314-c24b85b61cc8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fa47e6e-25b8-11e9-b6d6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fa47e6e-25b8-11e9-b6d6-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [867a4268-b3d7-45d6-9e5e-a05e3900f38a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 867a4268-b3d7-45d6-9e5e-a05e3900f38a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fb65e80-25b8-11e9-ab6a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fb65e80-25b8-11e9-ab6a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [96a09d76-c865-4992-b7ad-182f768e1215] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 96a09d76-c865-4992-b7ad-182f768e1215 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fce5c1c-25b8-11e9-b675-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fce5c1c-25b8-11e9-b675-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2a1ec7a1-d3f3-486c-92c3-e78cb932d7d5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2a1ec7a1-d3f3-486c-92c3-e78cb932d7d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fe01bbe-25b8-11e9-9482-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fe01bbe-25b8-11e9-9482-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fc9f75c4-bcf5-48cb-a89d-47b30c3db6e1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fc9f75c4-bcf5-48cb-a89d-47b30c3db6e1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [414866de-25b8-11e9-9d36-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 414866de-25b8-11e9-9d36-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d033604a-e9b1-4843-a8dd-1d2382b843ef] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d033604a-e9b1-4843-a8dd-1d2382b843ef + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4160c840-25b8-11e9-8df8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4160c840-25b8-11e9-8df8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [64339898-2627-4c70-9202-f3d7bf4f3a60] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 64339898-2627-4c70-9202-f3d7bf4f3a60 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41730bfa-25b8-11e9-a0a8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41730bfa-25b8-11e9-a0a8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3f9efba2-d807-4a21-9639-1667a14ba2d5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3f9efba2-d807-4a21-9639-1667a14ba2d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4189733e-25b8-11e9-a792-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4189733e-25b8-11e9-a792-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5ea83fe4-81ec-46a4-8b69-ea2d4a61827c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5ea83fe4-81ec-46a4-8b69-ea2d4a61827c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [419d8e62-25b8-11e9-826e-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 419d8e62-25b8-11e9-826e-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4b774a2a-0e1a-4033-a785-cb65201d7e99] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4b774a2a-0e1a-4033-a785-cb65201d7e99 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41afd3c6-25b8-11e9-bb60-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41afd3c6-25b8-11e9-bb60-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dd3a1c5d-140b-4cec-9451-59ded30fb472] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dd3a1c5d-140b-4cec-9451-59ded30fb472 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41c2c96c-25b8-11e9-b896-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41c2c96c-25b8-11e9-b896-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8bd1f5a0-eb07-43be-b10b-e56a22ebc1d5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8bd1f5a0-eb07-43be-b10b-e56a22ebc1d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41e53898-25b8-11e9-af91-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41e53898-25b8-11e9-af91-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [32908c94-6b24-4230-bdd4-68f28b242123] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 32908c94-6b24-4230-bdd4-68f28b242123 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [485217f6-25b8-11e9-849c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 485217f6-25b8-11e9-849c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:22 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d71dfeeb-2b19-4dce-941b-11f9f99aad48] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d71dfeeb-2b19-4dce-941b-11f9f99aad48 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4865071a-25b8-11e9-86fa-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4865071a-25b8-11e9-86fa-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d7188a9e-aee1-4f46-9761-ed490dfcb9d8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d7188a9e-aee1-4f46-9761-ed490dfcb9d8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48a7dcc6-25b8-11e9-97a6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48a7dcc6-25b8-11e9-97a6-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871241,"modificationTime":1548980871264,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980871588,"modificationTime":1548980871623,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980871961,"modificationTime":1548980871983,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c5ca9e56-f5bd-4625-944b-37f7e7789076] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c5ca9e56-f5bd-4625-944b-37f7e7789076 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48e47a28-25b8-11e9-9a53-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48e47a28-25b8-11e9-9a53-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548980873713,"modificationTime":1548980873764,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [74d450d0-38c8-4885-b104-851948b95e0a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 74d450d0-38c8-4885-b104-851948b95e0a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [48e3ca54-25b8-11e9-89ad-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 48e3ca54-25b8-11e9-89ad-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980871971,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548980872149,"modificationTime":1548980873159,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548980873358,"modificationTime":1548980873358,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548980873475,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:23 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [14eb6867-7e74-42fa-bf90-f37df4028a0e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 14eb6867-7e74-42fa-bf90-f37df4028a0e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49a6f9e6-25b8-11e9-9789-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49a6f9e6-25b8-11e9-9789-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:24 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [05172824-6081-4010-ae01-ad79923c13b1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 05172824-6081-4010-ae01-ad79923c13b1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49b8c6a6-25b8-11e9-b841-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49b8c6a6-25b8-11e9-b841-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f6a1a1cd-88fe-4bab-9efc-ffe25162a9c4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f6a1a1cd-88fe-4bab-9efc-ffe25162a9c4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49cabab0-25b8-11e9-afaf-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49cabab0-25b8-11e9-afaf-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7933b226-2f98-4ee4-90a7-257573384214] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7933b226-2f98-4ee4-90a7-257573384214 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49dc9190-25b8-11e9-aa04-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49dc9190-25b8-11e9-aa04-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [26ce548f-cab4-4cf7-a97b-3cc6da7bfc5c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 26ce548f-cab4-4cf7-a97b-3cc6da7bfc5c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [49f6aae2-25b8-11e9-a058-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 49f6aae2-25b8-11e9-a058-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c2acd06c-df66-495b-9aad-96ca1f8d2657] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c2acd06c-df66-495b-9aad-96ca1f8d2657 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a15dbb6-25b8-11e9-b95c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a15dbb6-25b8-11e9-b95c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e621cec0-0e1b-4953-b1f0-712988956efa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e621cec0-0e1b-4953-b1f0-712988956efa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a2c64e6-25b8-11e9-a050-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a2c64e6-25b8-11e9-a050-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7c98486a-e99e-46ca-8a94-6e17d40f9781] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7c98486a-e99e-46ca-8a94-6e17d40f9781 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a3e2f1c-25b8-11e9-9299-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a3e2f1c-25b8-11e9-9299-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:25 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [111b4628-727f-4a23-a715-be14c8322682] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 111b4628-727f-4a23-a715-be14c8322682 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a4ffd00-25b8-11e9-a2fa-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a4ffd00-25b8-11e9-a2fa-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [35325e5e-7486-4f07-89b5-a5d809ec4e77] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 35325e5e-7486-4f07-89b5-a5d809ec4e77 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a61ca76-25b8-11e9-9222-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a61ca76-25b8-11e9-9222-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ab627bdd-f17c-4a53-bd26-3b6a6bc224e3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ab627bdd-f17c-4a53-bd26-3b6a6bc224e3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a73a7d8-25b8-11e9-bb6a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a73a7d8-25b8-11e9-bb6a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ee88ff3d-fa50-4810-afbb-0d2e1de1df76] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ee88ff3d-fa50-4810-afbb-0d2e1de1df76 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4a85afda-25b8-11e9-be38-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4a85afda-25b8-11e9-be38-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6d132b5d-3812-4808-91df-d6282b7c17a1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6d132b5d-3812-4808-91df-d6282b7c17a1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4aa0381e-25b8-11e9-8f6f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4aa0381e-25b8-11e9-8f6f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bafd3b3d-a0d5-42b8-9e29-5d014e7330e5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bafd3b3d-a0d5-42b8-9e29-5d014e7330e5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ab77702-25b8-11e9-a334-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ab77702-25b8-11e9-a334-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9429688e-f247-4563-9d29-1fbe2f6ef296] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9429688e-f247-4563-9d29-1fbe2f6ef296 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ac99292-25b8-11e9-bcf5-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ac99292-25b8-11e9-bcf5-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3b8af5ce-e1af-4423-946e-08cfbceb6e10] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3b8af5ce-e1af-4423-946e-08cfbceb6e10 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4adebbb6-25b8-11e9-ac87-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4adebbb6-25b8-11e9-ac87-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548980870911,"modificationTime":1548980873474,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [627be942-acff-4c7e-ad5d-78e544d3aef4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 627be942-acff-4c7e-ad5d-78e544d3aef4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4af16076-25b8-11e9-b4ae-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4af16076-25b8-11e9-b4ae-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3fbfc12b-a6ac-4c06-84b9-4669c2b6f05b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3fbfc12b-a6ac-4c06-84b9-4669c2b6f05b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b04e80a-25b8-11e9-8527-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b04e80a-25b8-11e9-8527-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [568235b3-098c-468f-b9e8-c4b84c14b1de] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 568235b3-098c-468f-b9e8-c4b84c14b1de + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b1bc3b8-25b8-11e9-9988-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b1bc3b8-25b8-11e9-9988-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980869367,"modificationTime":1548980869608,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [397217d9-0ad1-4eb1-80e1-6b7ba049dafd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 397217d9-0ad1-4eb1-80e1-6b7ba049dafd + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b2ce868-25b8-11e9-8c7a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b2ce868-25b8-11e9-8c7a-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [65c0dc86-4114-4215-97a0-e84a9d71e7a7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65c0dc86-4114-4215-97a0-e84a9d71e7a7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b4eb566-25b8-11e9-8935-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b4eb566-25b8-11e9-8935-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['644'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c72452c6-5f58-4948-98b2-9f59dbf5804d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c72452c6-5f58-4948-98b2-9f59dbf5804d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b6213ac-25b8-11e9-a618-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b6213ac-25b8-11e9-a618-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980870093,"modificationTime":1548980870139,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a6c85c90-5700-4e60-8fb2-987a773e11e1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a6c85c90-5700-4e60-8fb2-987a773e11e1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b73968c-25b8-11e9-be2d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b73968c-25b8-11e9-be2d-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a227b8a3-9f0b-449b-a654-b321bda139ad] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a227b8a3-9f0b-449b-a654-b321bda139ad + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4b950490-25b8-11e9-bdec-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4b950490-25b8-11e9-bdec-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['350'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [55f2a47e-db31-4b96-a128-03c21dec7449] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 55f2a47e-db31-4b96-a128-03c21dec7449 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4baf64ae-25b8-11e9-8012-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4baf64ae-25b8-11e9-8012-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980870591,"modificationTime":1548980870655,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fd550eff-62cd-48cb-8f70-fb57ca57937f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fd550eff-62cd-48cb-8f70-fb57ca57937f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4bc0a946-25b8-11e9-ab01-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4bc0a946-25b8-11e9-ab01-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 00:28:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1fb65ad0-c4c1-4571-a2a1-b4d0778bb22a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 00:28:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1fb65ad0-c4c1-4571-a2a1-b4d0778bb22a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9fb70f0c-25bf-11e9-851a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 9fb70f0c-25bf-11e9-851a-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:55 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [30934f11-73ad-4653-bf98-41e823699bbf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 30934f11-73ad-4653-bf98-41e823699bbf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [9ff5858c-25bf-11e9-bae9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 9ff5858c-25bf-11e9-bae9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv - [cecd736d-a03b-4ec1-abf5-aa530710f64b][2019-01-31T17:20:56.4933112-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [cecd736d-a03b-4ec1-abf5-aa530710f64b][2019-01-31T17:20:56.4933112-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:55 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cecd736d-a03b-4ec1-abf5-aa530710f64b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:55 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cecd736d-a03b-4ec1-abf5-aa530710f64b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0089ae2-25bf-11e9-afd7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0089ae2-25bf-11e9-afd7-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a49d684f-8d56-4510-bee9-e7cad1aa6f90&filesessionid=a49d684f-8d56-4510-bee9-e7cad1aa6f90 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:55 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a49d684f-8d56-4510-bee9-e7cad1aa6f90&filesessionid=a49d684f-8d56-4510-bee9-e7cad1aa6f90'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a11d13db-1832-4e7b-980f-035ecd7c7335] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:55 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a49d684f-8d56-4510-bee9-e7cad1aa6f90&filesessionid=a49d684f-8d56-4510-bee9-e7cad1aa6f90 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a11d13db-1832-4e7b-980f-035ecd7c7335 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a02fdbac-25bf-11e9-ac3e-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a02fdbac-25bf-11e9-ac3e-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv - [0ff20ba0-ddad-4478-9e95-84cfa7ea8cce][2019-01-31T17:20:56.8839390-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [0ff20ba0-ddad-4478-9e95-84cfa7ea8cce][2019-01-31T17:20:56.8839390-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0ff20ba0-ddad-4478-9e95-84cfa7ea8cce] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0ff20ba0-ddad-4478-9e95-84cfa7ea8cce + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0434112-25bf-11e9-adee-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0434112-25bf-11e9-adee-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e17a298b-e469-4c63-ab11-2ab9aaeea723&filesessionid=e17a298b-e469-4c63-ab11-2ab9aaeea723 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e17a298b-e469-4c63-ab11-2ab9aaeea723&filesessionid=e17a298b-e469-4c63-ab11-2ab9aaeea723'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e9e31ac8-14ab-43c1-b4bd-7b9fa476d702] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e17a298b-e469-4c63-ab11-2ab9aaeea723&filesessionid=e17a298b-e469-4c63-ab11-2ab9aaeea723 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e9e31ac8-14ab-43c1-b4bd-7b9fa476d702 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a065fe24-25bf-11e9-b029-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a065fe24-25bf-11e9-b029-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt - [f8232092-5110-48a7-b81d-2d938b3204c0][2019-01-31T17:20:57.2276928-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [f8232092-5110-48a7-b81d-2d938b3204c0][2019-01-31T17:20:57.2276928-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f8232092-5110-48a7-b81d-2d938b3204c0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f8232092-5110-48a7-b81d-2d938b3204c0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0793b6c-25bf-11e9-b7b3-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0793b6c-25bf-11e9-b7b3-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb&filesessionid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb&filesessionid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a0a7d476-a03b-4300-a250-4dcbfd8bb5ba] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb&filesessionid=f724c8ed-187f-41c2-8643-dcdb8dbf06cb + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a0a7d476-a03b-4300-a250-4dcbfd8bb5ba + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a09df49e-25bf-11e9-8469-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a09df49e-25bf-11e9-8469-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3faaa066-aec0-40e2-b22e-5fde6ccc6bce] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3faaa066-aec0-40e2-b22e-5fde6ccc6bce + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0b1a61c-25bf-11e9-a03f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0b1a61c-25bf-11e9-a03f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv - [8e45ab02-4458-4ad2-aa78-98855c315843][2019-01-31T17:20:57.7276960-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [8e45ab02-4458-4ad2-aa78-98855c315843][2019-01-31T17:20:57.7276960-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:56 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8e45ab02-4458-4ad2-aa78-98855c315843] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8e45ab02-4458-4ad2-aa78-98855c315843 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0c4f824-25bf-11e9-9ab4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0c4f824-25bf-11e9-9ab4-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ff24235-f524-4541-b05e-76895a15cfde&filesessionid=6ff24235-f524-4541-b05e-76895a15cfde response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ff24235-f524-4541-b05e-76895a15cfde&filesessionid=6ff24235-f524-4541-b05e-76895a15cfde'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [128c822c-995f-49d7-b2e4-7e048554afbc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6ff24235-f524-4541-b05e-76895a15cfde&filesessionid=6ff24235-f524-4541-b05e-76895a15cfde + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 128c822c-995f-49d7-b2e4-7e048554afbc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0e7f042-25bf-11e9-8e1d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0e7f042-25bf-11e9-8e1d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv - [f196ea06-8563-41b9-9e46-ce00fb877d72][2019-01-31T17:20:58.0870728-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [f196ea06-8563-41b9-9e46-ce00fb877d72][2019-01-31T17:20:58.0870728-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f196ea06-8563-41b9-9e46-ce00fb877d72] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f196ea06-8563-41b9-9e46-ce00fb877d72 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a0fb40be-25bf-11e9-8053-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a0fb40be-25bf-11e9-8053-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182&filesessionid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182&filesessionid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb4d9000-42f4-4955-88ff-4a4e29f8fd15] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182&filesessionid=a48f17e2-dbbe-4c56-9ce9-239a2d0f9182 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eb4d9000-42f4-4955-88ff-4a4e29f8fd15 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a11b51b4-25bf-11e9-a030-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a11b51b4-25bf-11e9-a030-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt - [23305592-a524-465d-b119-bedd61898b69][2019-01-31T17:20:58.4152267-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [23305592-a524-465d-b119-bedd61898b69][2019-01-31T17:20:58.4152267-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [23305592-a524-465d-b119-bedd61898b69] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 23305592-a524-465d-b119-bedd61898b69 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a12eb738-25bf-11e9-9575-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a12eb738-25bf-11e9-9575-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=69399744-e87b-46c2-b72d-d3c2130e080a&filesessionid=69399744-e87b-46c2-b72d-d3c2130e080a response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=69399744-e87b-46c2-b72d-d3c2130e080a&filesessionid=69399744-e87b-46c2-b72d-d3c2130e080a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [25f3e111-dc71-4c5b-bae7-5ae08a2f78f8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=69399744-e87b-46c2-b72d-d3c2130e080a&filesessionid=69399744-e87b-46c2-b72d-d3c2130e080a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 25f3e111-dc71-4c5b-bae7-5ae08a2f78f8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a152109c-25bf-11e9-8b48-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a152109c-25bf-11e9-8b48-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:57 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b5cf2c14-c06c-4620-81f2-300b5932df34] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:57 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b5cf2c14-c06c-4620-81f2-300b5932df34 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a165fcf0-25bf-11e9-8a07-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a165fcf0-25bf-11e9-8a07-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv - [385e6fac-feca-4572-b471-73580d8c8481][2019-01-31T17:20:58.9152249-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [385e6fac-feca-4572-b471-73580d8c8481][2019-01-31T17:20:58.9152249-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [385e6fac-feca-4572-b471-73580d8c8481] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:58 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 385e6fac-feca-4572-b471-73580d8c8481 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a1799d12-25bf-11e9-ab71-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a1799d12-25bf-11e9-ab71-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ad300486-7818-4b03-b818-65a4a03cb12b&filesessionid=ad300486-7818-4b03-b818-65a4a03cb12b response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:58 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ad300486-7818-4b03-b818-65a4a03cb12b&filesessionid=ad300486-7818-4b03-b818-65a4a03cb12b'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7e33256a-5b06-4641-b900-3665f47b0533] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:58 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ad300486-7818-4b03-b818-65a4a03cb12b&filesessionid=ad300486-7818-4b03-b818-65a4a03cb12b + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7e33256a-5b06-4641-b900-3665f47b0533 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a19dcd66-25bf-11e9-9e8d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a19dcd66-25bf-11e9-9e8d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv - [c913d4b2-5303-415a-8f4d-03f6a496c35b][2019-01-31T17:20:59.2745837-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [c913d4b2-5303-415a-8f4d-03f6a496c35b][2019-01-31T17:20:59.2745837-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c913d4b2-5303-415a-8f4d-03f6a496c35b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:58 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c913d4b2-5303-415a-8f4d-03f6a496c35b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a1b14576-25bf-11e9-959b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a1b14576-25bf-11e9-959b-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d7968d90-8e62-46fe-ad89-78acb88df1ac&filesessionid=d7968d90-8e62-46fe-ad89-78acb88df1ac response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:58 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d7968d90-8e62-46fe-ad89-78acb88df1ac&filesessionid=d7968d90-8e62-46fe-ad89-78acb88df1ac'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d4a09342-480c-434b-92af-c6ec0aa5eea0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:58 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d7968d90-8e62-46fe-ad89-78acb88df1ac&filesessionid=d7968d90-8e62-46fe-ad89-78acb88df1ac + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d4a09342-480c-434b-92af-c6ec0aa5eea0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a1d5d962-25bf-11e9-838f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a1d5d962-25bf-11e9-838f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt - [adf11ce1-a094-4a6c-bcb8-9a9f12e83780][2019-01-31T17:20:59.6495883-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [adf11ce1-a094-4a6c-bcb8-9a9f12e83780][2019-01-31T17:20:59.6495883-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:58 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [adf11ce1-a094-4a6c-bcb8-9a9f12e83780] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:58 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - adf11ce1-a094-4a6c-bcb8-9a9f12e83780 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a1e964f0-25bf-11e9-bdcd-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a1e964f0-25bf-11e9-bdcd-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a&filesessionid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:59 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a&filesessionid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9e5830f1-489b-474d-b7be-b8989ab0a8bc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:59 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a&filesessionid=f266ccd3-3aa6-4d96-8138-bcb1eeac516a + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9e5830f1-489b-474d-b7be-b8989ab0a8bc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a20ad5a4-25bf-11e9-ad73-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a20ad5a4-25bf-11e9-ad73-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/empty?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cceeec24-60f5-4aa1-b85e-52690b796163] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cceeec24-60f5-4aa1-b85e-52690b796163 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a21eea0a-25bf-11e9-8053-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a21eea0a-25bf-11e9-8053-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MKDIRS&api-version=2018-05-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a6a5ae0e-016c-49b8-8626-3eefe68ea442] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a6a5ae0e-016c-49b8-8626-3eefe68ea442 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a2331534-25bf-11e9-935d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a2331534-25bf-11e9-935d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt - [7716d386-e565-43ee-b0db-a048adf9915a][2019-01-31T17:21:00.2589704-08:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [7716d386-e565-43ee-b0db-a048adf9915a][2019-01-31T17:21:00.2589704-08:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:20:59 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7716d386-e565-43ee-b0db-a048adf9915a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:20:59 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7716d386-e565-43ee-b0db-a048adf9915a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a246c7da-25bf-11e9-8d92-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a246c7da-25bf-11e9-8d92-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37&filesessionid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 01 Feb 2019 01:20:59 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37&filesessionid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [df208fd4-0eb1-4710-8151-211dd87690e7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 01 Feb 2019 01:20:59 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37&filesessionid=8781fd0d-2d24-4cbd-9c9c-4c96fad71a37 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - df208fd4-0eb1-4710-8151-211dd87690e7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a8cb6d98-25bf-11e9-b7f0-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a8cb6d98-25bf-11e9-b7f0-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1188'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ac13c260-0720-46a2-97a1-b65a6ddf6aaa] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1188' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ac13c260-0720-46a2-97a1-b65a6ddf6aaa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a8e1f364-25bf-11e9-966b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a8e1f364-25bf-11e9-966b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1110'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4cd7699d-e719-4056-bc62-d23460db304a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1110' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4cd7699d-e719-4056-bc62-d23460db304a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a9227812-25bf-11e9-a351-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a9227812-25bf-11e9-a351-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['918'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [100f761f-e86f-4d15-b228-f8e7958ed321] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '918' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 100f761f-e86f-4d15-b228-f8e7958ed321 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [a95e7fb4-25bf-11e9-98e5-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - a95e7fb4-25bf-11e9-98e5-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['333'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [46252dd5-45a8-4584-b4d0-2a7b83d88553] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '333' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 46252dd5-45a8-4584-b4d0-2a7b83d88553 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa2791cc-25bf-11e9-9f21-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa2791cc-25bf-11e9-9f21-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [26662b43-2ab5-4eb5-907e-978a24fa5e10] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 26662b43-2ab5-4eb5-907e-978a24fa5e10 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa3d40a4-25bf-11e9-a8f9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa3d40a4-25bf-11e9-a8f9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f1f0fc15-7ced-43cc-bddf-56271ab0b671] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1106' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f1f0fc15-7ced-43cc-bddf-56271ab0b671 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa5190a6-25bf-11e9-9c18-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa5190a6-25bf-11e9-9c18-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ab04012e-4390-4b9f-8dfc-b1480160dc47] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ab04012e-4390-4b9f-8dfc-b1480160dc47 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa6c2152-25bf-11e9-9e0f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa6c2152-25bf-11e9-9e0f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984059065,"modificationTime":1548984059118,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984059423,"modificationTime":1548984059493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984059792,"modificationTime":1548984059837,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984059065,"modificationTime":1548984059118,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984059423,"modificationTime":1548984059493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984059792,"modificationTime":1548984059837,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d3557d67-ba7a-468c-a430-5740ad986433] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d3557d67-ba7a-468c-a430-5740ad986433 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa82e2b6-25bf-11e9-ae19-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa82e2b6-25bf-11e9-ae19-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/empty?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['34'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [079ad6b9-8811-400a-8adc-af88d5e0bafd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '34' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 079ad6b9-8811-400a-8adc-af88d5e0bafd + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aa974530-25bf-11e9-8e33-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aa974530-25bf-11e9-8e33-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060423,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060423,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c5b453f9-c2c5-48fc-a25f-41d6e568955a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c5b453f9-c2c5-48fc-a25f-41d6e568955a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aaaba6b0-25bf-11e9-867f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aaaba6b0-25bf-11e9-867f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['332'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1a022956-1e02-4e96-bc25-e06820b44717] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '332' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1a022956-1e02-4e96-bc25-e06820b44717 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aac06c0c-25bf-11e9-b263-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aac06c0c-25bf-11e9-b263-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [eb5a47f6-dd94-42a9-a905-e18a1bc12d84] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eb5a47f6-dd94-42a9-a905-e18a1bc12d84 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aad4a986-25bf-11e9-8697-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aad4a986-25bf-11e9-8697-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:13 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c056e0d2-6423-4835-b5a2-1982a66bcb38] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c056e0d2-6423-4835-b5a2-1982a66bcb38 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aae947c2-25bf-11e9-b1c5-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aae947c2-25bf-11e9-b1c5-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a97c6d9f-1a93-42e3-94b4-34c75e7e1784] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a97c6d9f-1a93-42e3-94b4-34c75e7e1784 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aafd97fa-25bf-11e9-a248-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aafd97fa-25bf-11e9-a248-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [61a31a1f-7f86-4596-9a57-f8d6dc1bb309] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 61a31a1f-7f86-4596-9a57-f8d6dc1bb309 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab11ea9a-25bf-11e9-91ba-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab11ea9a-25bf-11e9-91ba-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6e065572-b5a0-4426-b39f-c79e4aaf8f66] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6e065572-b5a0-4426-b39f-c79e4aaf8f66 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab27262e-25bf-11e9-84e5-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab27262e-25bf-11e9-84e5-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [429d4bf8-c867-4638-9c0f-e5c5f2c53aad] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 429d4bf8-c867-4638-9c0f-e5c5f2c53aad + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab3b88ba-25bf-11e9-b074-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab3b88ba-25bf-11e9-b074-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [208be4d6-fbe2-4a41-b625-c37c0b2a6d61] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 208be4d6-fbe2-4a41-b625-c37c0b2a6d61 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab4feb3a-25bf-11e9-aa2c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab4feb3a-25bf-11e9-aa2c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5b2669f4-7449-4bc2-8997-2d01973d714c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5b2669f4-7449-4bc2-8997-2d01973d714c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab644dd2-25bf-11e9-bcde-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab644dd2-25bf-11e9-bcde-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [25e62916-d982-41e1-9199-4994ec52e9cd] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 25e62916-d982-41e1-9199-4994ec52e9cd + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab788b30-25bf-11e9-934c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab788b30-25bf-11e9-934c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:14 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8b317a84-8a17-4579-906f-c828ddfeea3f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8b317a84-8a17-4579-906f-c828ddfeea3f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [ab8d4e74-25bf-11e9-9fd1-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - ab8d4e74-25bf-11e9-9fd1-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0a813cfe-7655-429c-a3df-11b206d60f45] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0a813cfe-7655-429c-a3df-11b206d60f45 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [aba213a8-25bf-11e9-98a8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - aba213a8-25bf-11e9-98a8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [49527f15-2371-4d2b-825f-51e5fe5365db] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 49527f15-2371-4d2b-825f-51e5fe5365db + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [abb6d6da-25bf-11e9-b3fb-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - abb6d6da-25bf-11e9-b3fb-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [feb54870-d30f-4d93-b2a3-6a20b440a619] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - feb54870-d30f-4d93-b2a3-6a20b440a619 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [abcb7424-25bf-11e9-9ea9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - abcb7424-25bf-11e9-9ea9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:15 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [df28cfd3-a0c3-4ebb-8ea7-5ac2f91fd0ca] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - df28cfd3-a0c3-4ebb-8ea7-5ac2f91fd0ca + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b221d05c-25bf-11e9-be69-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b221d05c-25bf-11e9-be69-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:26 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [cdca93e5-3601-4f0d-b8c4-ff50b61226f2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cdca93e5-3601-4f0d-b8c4-ff50b61226f2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b237580a-25bf-11e9-971a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b237580a-25bf-11e9-971a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [deab8433-2178-4dea-94d8-7173a4ecbab0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1106' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - deab8433-2178-4dea-94d8-7173a4ecbab0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b276a60c-25bf-11e9-a9a3-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b276a60c-25bf-11e9-a9a3-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057881,"modificationTime":1548984057915,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984058230,"modificationTime":1548984058274,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984058566,"modificationTime":1548984058618,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7e71fa2c-47d1-43a4-a910-a60aa9c59613] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7e71fa2c-47d1-43a4-a910-a60aa9c59613 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b2b30b38-25bf-11e9-a902-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b2b30b38-25bf-11e9-a902-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1548984060404,"modificationTime":1548984060493,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['332'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [28335bd5-515d-4751-91a5-42450b2e5cdf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '332' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 28335bd5-515d-4751-91a5-42450b2e5cdf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b2b2a87e-25bf-11e9-983a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b2b2a87e-25bf-11e9-983a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984058578,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1548984058789,"modificationTime":1548984059803,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1548984060002,"modificationTime":1548984060002,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1548984060134,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1106'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:27 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ba6f47b2-8d47-4754-88f4-b5729e29d08a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1106' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ba6f47b2-8d47-4754-88f4-b5729e29d08a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b396c91c-25bf-11e9-9cd8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b396c91c-25bf-11e9-9cd8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [577782a2-f856-4b78-a852-87bb9e13d6b6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 577782a2-f856-4b78-a852-87bb9e13d6b6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b3ab2cd8-25bf-11e9-a5ba-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b3ab2cd8-25bf-11e9-a5ba-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [715cd54f-c7f6-4265-af1d-73cab8466002] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 715cd54f-c7f6-4265-af1d-73cab8466002 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b3bf54da-25bf-11e9-9f3b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b3bf54da-25bf-11e9-9f3b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a122efa2-c915-468d-9374-57a424de5065] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a122efa2-c915-468d-9374-57a424de5065 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b3d3ba9e-25bf-11e9-a126-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b3d3ba9e-25bf-11e9-a126-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:28 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [82536758-9791-4606-b48d-89a6d891d301] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 82536758-9791-4606-b48d-89a6d891d301 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b3e7f61c-25bf-11e9-b78a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b3e7f61c-25bf-11e9-b78a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [03d4fb25-83a9-4e75-b31c-377a0c48b4ea] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 03d4fb25-83a9-4e75-b31c-377a0c48b4ea + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b3fc58b0-25bf-11e9-add7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b3fc58b0-25bf-11e9-add7-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [411afb59-f81f-4766-b3d0-a8a8eeb21d35] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 411afb59-f81f-4766-b3d0-a8a8eeb21d35 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b410cda8-25bf-11e9-8d43-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b410cda8-25bf-11e9-8d43-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [188d7b7b-75c2-4d91-be18-f22145e94d8f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 188d7b7b-75c2-4d91-be18-f22145e94d8f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4256bfa-25bf-11e9-996b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4256bfa-25bf-11e9-996b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [763afbab-5af7-4745-ab04-c03a3266c979] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 763afbab-5af7-4745-ab04-c03a3266c979 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b439e20a-25bf-11e9-87c2-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b439e20a-25bf-11e9-87c2-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [50a4b3c8-8511-4556-baa2-c7d227545462] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 50a4b3c8-8511-4556-baa2-c7d227545462 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b44e587e-25bf-11e9-98f3-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b44e587e-25bf-11e9-98f3-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d3678022-1067-4fd7-8a1a-e8aab6ebdc6c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d3678022-1067-4fd7-8a1a-e8aab6ebdc6c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b462b9a8-25bf-11e9-8af9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b462b9a8-25bf-11e9-8af9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/b?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4c720ecb-03d8-4b4c-a42a-e930bc135f48] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4c720ecb-03d8-4b4c-a42a-e930bc135f48 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b47757ee-25bf-11e9-afde-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b47757ee-25bf-11e9-afde-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [12a64cac-ad3e-4b1b-89e5-66e505fcd051] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 12a64cac-ad3e-4b1b-89e5-66e505fcd051 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b48be090-25bf-11e9-ae28-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b48be090-25bf-11e9-ae28-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/a?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [96a34387-a718-4ffe-bddc-71dc869e121b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 96a34387-a718-4ffe-bddc-71dc869e121b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4a0b94c-25bf-11e9-8c51-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4a0b94c-25bf-11e9-8c51-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data/single/single?OP=MSGETACLSTATUS&api-version=2018-05-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['208'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a45f0466-7f15-4335-911c-63a4c47a3e9c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '208' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a45f0466-7f15-4335-911c-63a4c47a3e9c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4b541e8-25bf-11e9-b846-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4b541e8-25bf-11e9-b846-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1184'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [34cae8d3-890e-455f-871f-b3338638aeec] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1184' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 34cae8d3-890e-455f-871f-b3338638aeec + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4c9f3ba-25bf-11e9-9176-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4c9f3ba-25bf-11e9-9176-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}'} + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1548984057608,"modificationTime":1548984060134,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c15a540a-4803-4453-9f22-d9b43a03bd58] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c15a540a-4803-4453-9f22-d9b43a03bd58 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4def3f6-25bf-11e9-9509-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4def3f6-25bf-11e9-9509-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/data?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e2bce0ce-a73e-4a88-99f8-1ad9326261f8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e2bce0ce-a73e-4a88-99f8-1ad9326261f8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b4f52b98-25bf-11e9-86cb-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b4f52b98-25bf-11e9-86cb-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['915'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [910eb842-b85d-4e3b-a1bc-b0eb67a1bd6a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '915' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 910eb842-b85d-4e3b-a1bc-b0eb67a1bd6a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b50a0366-25bf-11e9-99f4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b50a0366-25bf-11e9-99f4-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984056640,"modificationTime":1548984056727,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6d1086ce-c705-42b8-b16b-d33ce9bd3ac3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6d1086ce-c705-42b8-b16b-d33ce9bd3ac3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b51db6f6-25bf-11e9-8fa9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b51db6f6-25bf-11e9-8fa9-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/x.csv?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5ef93600-4d5d-499b-8c4e-58b25d9bcf71] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5ef93600-4d5d-499b-8c4e-58b25d9bcf71 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b53689fe-25bf-11e9-b901-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b53689fe-25bf-11e9-b901-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['621'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5cbb242d-9072-4caa-b408-c94ebed211b9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '621' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5cbb242d-9072-4caa-b408-c94ebed211b9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b54b4e34-25bf-11e9-9554-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b54b4e34-25bf-11e9-9554-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984057023,"modificationTime":1548984057071,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [201fb9aa-9581-4102-87fe-64aeabdca930] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 201fb9aa-9581-4102-87fe-64aeabdca930 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b55eed4a-25bf-11e9-bb66-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b55eed4a-25bf-11e9-bb66-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/y.csv?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f6091d30-8ce4-48ea-b94e-aac9d26dd366] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f6091d30-8ce4-48ea-b94e-aac9d26dd366 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b5762308-25bf-11e9-bb25-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b5762308-25bf-11e9-bb25-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f94c7081-0b1c-450e-9124-0cac49ed090c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f94c7081-0b1c-450e-9124-0cac49ed090c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b58aac9e-25bf-11e9-b4f7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b58aac9e-25bf-11e9-b4f7-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=GETFILESTATUS&api-version=2018-05-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548984057377,"modificationTime":1548984057415,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [3a023c96-d983-4714-a532-d633c440cea9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3a023c96-d983-4714-a532-d633c440cea9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [b59e5e1e-25bf-11e9-b8d0-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - b59e5e1e-25bf-11e9-b8d0-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/z.txt?OP=DELETE&api-version=2018-05-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 01 Feb 2019 01:21:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [56ef1b14-0de3-46e1-97bb-2cf58b28405e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 01 Feb 2019 01:21:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 56ef1b14-0de3-46e1-97bb-2cf58b28405e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f2d4b9c-735a-11e9-97a1-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f2d4b9c-735a-11e9-97a1-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:45 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fe459525-8758-4407-91ef-d5ee892af01b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:45 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fe459525-8758-4407-91ef-d5ee892af01b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f701ec6-735a-11e9-bf70-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f701ec6-735a-11e9-bf70-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv - [d45258c3-5103-4123-8021-1b29df3998bf][2019-05-10T12:31:46.1162212-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [d45258c3-5103-4123-8021-1b29df3998bf][2019-05-10T12:31:46.1162212-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:45 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d45258c3-5103-4123-8021-1b29df3998bf] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:45 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d45258c3-5103-4123-8021-1b29df3998bf + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3f8668ba-735a-11e9-86a4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3f8668ba-735a-11e9-86a4-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=7546cb90-ee51-4492-977e-029d2b55f8d0&filesessionid=7546cb90-ee51-4492-977e-029d2b55f8d0 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:45 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=7546cb90-ee51-4492-977e-029d2b55f8d0&filesessionid=7546cb90-ee51-4492-977e-029d2b55f8d0'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [992bd9e4-bfeb-4ed8-aec4-d6a26eeee6c0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:45 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=7546cb90-ee51-4492-977e-029d2b55f8d0&filesessionid=7546cb90-ee51-4492-977e-029d2b55f8d0 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 992bd9e4-bfeb-4ed8-aec4-d6a26eeee6c0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fa7b5f0-735a-11e9-9440-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fa7b5f0-735a-11e9-9440-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv - [9521d0dc-ff06-4fe8-a6a6-1f0cc7751135][2019-05-10T12:31:46.4755994-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [9521d0dc-ff06-4fe8-a6a6-1f0cc7751135][2019-05-10T12:31:46.4755994-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:46 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9521d0dc-ff06-4fe8-a6a6-1f0cc7751135] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:46 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9521d0dc-ff06-4fe8-a6a6-1f0cc7751135 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fbdce30-735a-11e9-a37d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fbdce30-735a-11e9-a37d-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=41dd392a-3275-44bd-999d-559391c8db72&filesessionid=41dd392a-3275-44bd-999d-559391c8db72 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:46 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=41dd392a-3275-44bd-999d-559391c8db72&filesessionid=41dd392a-3275-44bd-999d-559391c8db72'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b8bc033d-4c76-4869-8370-4304dab985b9] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:46 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=41dd392a-3275-44bd-999d-559391c8db72&filesessionid=41dd392a-3275-44bd-999d-559391c8db72 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b8bc033d-4c76-4869-8370-4304dab985b9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3fdcfba4-735a-11e9-8fbc-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3fdcfba4-735a-11e9-8fbc-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt - [21f2c633-abdb-4fd2-84f6-df593f1daef0][2019-05-10T12:31:46.8193533-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [21f2c633-abdb-4fd2-84f6-df593f1daef0][2019-05-10T12:31:46.8193533-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['288'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:46 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [21f2c633-abdb-4fd2-84f6-df593f1daef0] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:46 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 21f2c633-abdb-4fd2-84f6-df593f1daef0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [3ff30ff6-735a-11e9-9122-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 3ff30ff6-735a-11e9-9122-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ee6e7dc4-2366-42db-96fb-6dd9624ce191&filesessionid=ee6e7dc4-2366-42db-96fb-6dd9624ce191 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:46 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ee6e7dc4-2366-42db-96fb-6dd9624ce191&filesessionid=ee6e7dc4-2366-42db-96fb-6dd9624ce191'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0da4370c-dd9d-4f0f-82cf-f14d459e519c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:46 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=ee6e7dc4-2366-42db-96fb-6dd9624ce191&filesessionid=ee6e7dc4-2366-42db-96fb-6dd9624ce191 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0da4370c-dd9d-4f0f-82cf-f14d459e519c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [401e45c0-735a-11e9-bf8f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 401e45c0-735a-11e9-bf8f-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:46 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [168dab11-4cc1-448e-aa05-080e71954277] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:46 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 168dab11-4cc1-448e-aa05-080e71954277 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40351e5c-735a-11e9-bd5c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 40351e5c-735a-11e9-bd5c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv - [19e77e5e-ebc6-4ef9-88e1-8b2ca284a446][2019-05-10T12:31:47.3974827-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [19e77e5e-ebc6-4ef9-88e1-8b2ca284a446][2019-05-10T12:31:47.3974827-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [19e77e5e-ebc6-4ef9-88e1-8b2ca284a446] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:47 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 19e77e5e-ebc6-4ef9-88e1-8b2ca284a446 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [404b71b8-735a-11e9-b740-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 404b71b8-735a-11e9-b740-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=314cd11c-306d-4db0-9592-23e847e2057c&filesessionid=314cd11c-306d-4db0-9592-23e847e2057c response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:47 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=314cd11c-306d-4db0-9592-23e847e2057c&filesessionid=314cd11c-306d-4db0-9592-23e847e2057c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c37be417-879a-489b-affc-f4614206ea23] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:47 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=314cd11c-306d-4db0-9592-23e847e2057c&filesessionid=314cd11c-306d-4db0-9592-23e847e2057c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c37be417-879a-489b-affc-f4614206ea23 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [407b6364-735a-11e9-8f70-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 407b6364-735a-11e9-8f70-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv - [9051f223-2c87-4c05-b750-10e98c5bb786][2019-05-10T12:31:47.8662369-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [9051f223-2c87-4c05-b750-10e98c5bb786][2019-05-10T12:31:47.8662369-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9051f223-2c87-4c05-b750-10e98c5bb786] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:47 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9051f223-2c87-4c05-b750-10e98c5bb786 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4091f7ec-735a-11e9-ba8b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4091f7ec-735a-11e9-ba8b-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8&filesessionid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:47 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8&filesessionid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [24213072-964a-49b2-9f0e-2d416782a275] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:47 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8&filesessionid=71f63f9d-e64c-49bc-97c7-b0e3ce3576a8 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 24213072-964a-49b2-9f0e-2d416782a275 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40b29128-735a-11e9-806d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 40b29128-735a-11e9-806d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt - [96c946ff-bd58-4597-bce2-e30812a18c96][2019-05-10T12:31:48.2256143-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [96c946ff-bd58-4597-bce2-e30812a18c96][2019-05-10T12:31:48.2256143-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:47 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [96c946ff-bd58-4597-bce2-e30812a18c96] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:47 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 96c946ff-bd58-4597-bce2-e30812a18c96 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40c8f062-735a-11e9-a10f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 40c8f062-735a-11e9-a10f-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4&filesessionid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:48 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4&filesessionid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [1ffd62c0-b20d-460f-a7fc-069e4e6e1efe] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:48 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4&filesessionid=1b0419e9-07b1-4ea6-9c2d-d740c34799a4 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1ffd62c0-b20d-460f-a7fc-069e4e6e1efe + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40e8d3a4-735a-11e9-aec1-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 40e8d3a4-735a-11e9-aec1-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [86a1792f-0b2b-4947-acaa-4b3e5564046d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 86a1792f-0b2b-4947-acaa-4b3e5564046d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [40fff7f6-735a-11e9-b335-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 40fff7f6-735a-11e9-b335-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv - [43aa16af-25a0-48a3-8f19-c39330ad18bb][2019-05-10T12:31:48.7256380-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [43aa16af-25a0-48a3-8f19-c39330ad18bb][2019-05-10T12:31:48.7256380-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [43aa16af-25a0-48a3-8f19-c39330ad18bb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 43aa16af-25a0-48a3-8f19-c39330ad18bb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [411692a2-735a-11e9-b063-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 411692a2-735a-11e9-b063-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e57d31f1-b446-4617-a969-a0aabc2fbfdc&filesessionid=e57d31f1-b446-4617-a969-a0aabc2fbfdc response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:48 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e57d31f1-b446-4617-a969-a0aabc2fbfdc&filesessionid=e57d31f1-b446-4617-a969-a0aabc2fbfdc'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [db7f45b3-c0e7-44b2-905a-e2bbbbcdb03c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:48 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=e57d31f1-b446-4617-a969-a0aabc2fbfdc&filesessionid=e57d31f1-b446-4617-a969-a0aabc2fbfdc + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - db7f45b3-c0e7-44b2-905a-e2bbbbcdb03c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41391864-735a-11e9-ba64-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41391864-735a-11e9-ba64-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv - [8ac9848b-b602-47a3-890d-2bf73e8f995a][2019-05-10T12:31:49.1006205-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [8ac9848b-b602-47a3-890d-2bf73e8f995a][2019-05-10T12:31:49.1006205-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:48 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8ac9848b-b602-47a3-890d-2bf73e8f995a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:48 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8ac9848b-b602-47a3-890d-2bf73e8f995a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [414fd3c2-735a-11e9-8ed6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 414fd3c2-735a-11e9-8ed6-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b&filesessionid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b&filesessionid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7437c55e-0787-45bb-85e4-ef7b6455f905] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b&filesessionid=1f08ab05-81c4-4b5e-b93c-d1f08a7f392b + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7437c55e-0787-45bb-85e4-ef7b6455f905 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [417baba4-735a-11e9-bd5c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 417baba4-735a-11e9-bd5c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt - [ab5c85e1-60b8-4f0e-842d-88219903616c][2019-05-10T12:31:49.5381422-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [ab5c85e1-60b8-4f0e-842d-88219903616c][2019-05-10T12:31:49.5381422-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['295'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ab5c85e1-60b8-4f0e-842d-88219903616c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ab5c85e1-60b8-4f0e-842d-88219903616c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41926242-735a-11e9-9f1f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41926242-735a-11e9-9f1f-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=916f75b7-342d-4306-8ef8-09c21b9b3082&filesessionid=916f75b7-342d-4306-8ef8-09c21b9b3082 response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=916f75b7-342d-4306-8ef8-09c21b9b3082&filesessionid=916f75b7-342d-4306-8ef8-09c21b9b3082'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [dd1c811c-167c-45fd-8b54-99b35d95c793] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=916f75b7-342d-4306-8ef8-09c21b9b3082&filesessionid=916f75b7-342d-4306-8ef8-09c21b9b3082 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dd1c811c-167c-45fd-8b54-99b35d95c793 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41c2603a-735a-11e9-b69d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41c2603a-735a-11e9-b69d-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/empty?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c8a9dd6e-9598-410e-beba-8d80d36fd8ac] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c8a9dd6e-9598-410e-beba-8d80d36fd8ac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41d9ad12-735a-11e9-86a7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41d9ad12-735a-11e9-86a7-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MKDIRS&api-version=2018-09-01 response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [81d5b938-5c17-41b1-be0d-c6804944e3fe] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 81d5b938-5c17-41b1-be0d-c6804944e3fe + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [41f11aca-735a-11e9-ac71-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 41f11aca-735a-11e9-ac71-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt - [bf45b9fe-9e52-448e-9fa6-0371da96a42e][2019-05-10T12:31:50.3193784-07:00]","javaClassName":"java.io.FileNotFoundException"}}'} + [bf45b9fe-9e52-448e-9fa6-0371da96a42e][2019-05-10T12:31:50.3193784-07:00]","javaClassName":"java.io.FileNotFoundException"}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['312'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:31:49 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x8309000A'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [bf45b9fe-9e52-448e-9fa6-0371da96a42e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 404, message: Not Found} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:31:49 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bf45b9fe-9e52-448e-9fa6-0371da96a42e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found - request: body: '123456' headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['6'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4207d4ae-735a-11e9-8bca-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4207d4ae-735a-11e9-8bca-480fcf66f040.0 method: PUT uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c&filesessionid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c response: - body: {string: ''} + body: + string: '' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['0'] - ContentLength: ['0'] - Date: ['Fri, 10 May 2019 19:31:50 GMT'] - Expires: ['-1'] - Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c&filesessionid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f3ad00bf-79c2-4c24-9791-04f6c6878e6c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 201, message: Created} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 10 May 2019 19:31:50 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c&filesessionid=3f4fe90b-ada9-4df4-b7ef-f59196b6992c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f3ad00bf-79c2-4c24-9791-04f6c6878e6c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4c068edc-735a-11e9-92c8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4c068edc-735a-11e9-92c8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:06 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f730c5a1-4081-4497-84c6-0b035fa72c8f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f730c5a1-4081-4497-84c6-0b035fa72c8f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4c1e63ee-735a-11e9-a018-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4c1e63ee-735a-11e9-a018-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [68e48c4c-74f4-4783-a172-0b00a769426d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 68e48c4c-74f4-4783-a172-0b00a769426d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4c634426-735a-11e9-b6fe-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4c634426-735a-11e9-b6fe-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [aec587f8-15c5-43f4-a66c-9f9da6e8f24e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - aec587f8-15c5-43f4-a66c-9f9da6e8f24e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ca18190-735a-11e9-b5af-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ca18190-735a-11e9-b5af-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:07 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [fc6856fd-da0a-4104-9633-402c5a503b00] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fc6856fd-da0a-4104-9633-402c5a503b00 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4cb3b06e-735a-11e9-ab04-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4cb3b06e-735a-11e9-ab04-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:08 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0b4cc6af-e5dd-45ca-a788-9937ad6fecf3] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0b4cc6af-e5dd-45ca-a788-9937ad6fecf3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4da4cb7a-735a-11e9-9c3f-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4da4cb7a-735a-11e9-9c3f-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4fb457d2-9e4c-4512-b5dc-280bb81c7862] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:09 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4fb457d2-9e4c-4512-b5dc-280bb81c7862 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4dbc86c2-735a-11e9-a8fc-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4dbc86c2-735a-11e9-a8fc-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [36d641fe-25da-4a9e-aa3e-78552ca65676] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:09 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 36d641fe-25da-4a9e-aa3e-78552ca65676 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4dd51eec-735a-11e9-915d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4dd51eec-735a-11e9-915d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d967c060-4c3c-4c78-bb33-a3468bf230a7] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:09 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d967c060-4c3c-4c78-bb33-a3468bf230a7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4dede4a8-735a-11e9-9fcb-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4dede4a8-735a-11e9-9fcb-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708903,"modificationTime":1557516708928,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516709278,"modificationTime":1557516709335,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516709714,"modificationTime":1557516709834,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708903,"modificationTime":1557516708928,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516709278,"modificationTime":1557516709335,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516709714,"modificationTime":1557516709834,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:09 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [4853f467-1db0-496c-b43c-97d893289727] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:09 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4853f467-1db0-496c-b43c-97d893289727 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e0626f6-735a-11e9-b2eb-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e0626f6-735a-11e9-b2eb-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['57'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [5aeffe3b-e428-4aee-b7f1-19b413a4bbb4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5aeffe3b-e428-4aee-b7f1-19b413a4bbb4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e24ad22-735a-11e9-a68b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e24ad22-735a-11e9-a68b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710490,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710490,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['327'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e3e54fc8-8c95-40e4-b3fb-c2b9602fbff5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e3e54fc8-8c95-40e4-b3fb-c2b9602fbff5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e3bf838-735a-11e9-adc9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e3bf838-735a-11e9-adc9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0d2596fc-718b-4655-bd15-de1fff1b0c0c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0d2596fc-718b-4655-bd15-de1fff1b0c0c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e53f4f4-735a-11e9-b3dc-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e53f4f4-735a-11e9-b3dc-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ccef2e21-5672-4a51-8e05-013504cb19f2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ccef2e21-5672-4a51-8e05-013504cb19f2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e6b7806-735a-11e9-92c1-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e6b7806-735a-11e9-92c1-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [31ef71d4-a74a-4517-8d96-37dbd84e198c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 31ef71d4-a74a-4517-8d96-37dbd84e198c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e828392-735a-11e9-b8fd-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e828392-735a-11e9-b8fd-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:10 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ec726c17-ffa9-4fbc-934d-ff412be1f840] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ec726c17-ffa9-4fbc-934d-ff412be1f840 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4e996002-735a-11e9-b43c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4e996002-735a-11e9-b43c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b2f48cc4-1be4-4ef5-85c7-6fe49c170313] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b2f48cc4-1be4-4ef5-85c7-6fe49c170313 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4eb05ec2-735a-11e9-ab6d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4eb05ec2-735a-11e9-ab6d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [a21924fd-2755-45a5-a205-41a4a31842cc] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a21924fd-2755-45a5-a205-41a4a31842cc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ec73664-735a-11e9-b7fe-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ec73664-735a-11e9-b7fe-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [932fdf55-f1e3-4736-ac31-42aab4b600d6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 932fdf55-f1e3-4736-ac31-42aab4b600d6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4edebe06-735a-11e9-bd54-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4edebe06-735a-11e9-bd54-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b3fbcddd-8d2d-4ecb-9cd0-b0ad719b564d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b3fbcddd-8d2d-4ecb-9cd0-b0ad719b564d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4ef60aa4-735a-11e9-b6f0-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4ef60aa4-735a-11e9-b6f0-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8592bd7a-96a0-4d86-af48-de1aca7f95f8] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8592bd7a-96a0-4d86-af48-de1aca7f95f8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f0db7e8-735a-11e9-933a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f0db7e8-735a-11e9-933a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e21feae6-9066-44bc-bfc8-0cf91bc67fe4] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e21feae6-9066-44bc-bfc8-0cf91bc67fe4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f247a86-735a-11e9-9a4d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f247a86-735a-11e9-9a4d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['304'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:11 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [94ba8a18-32d5-471c-9d58-267df2af7aac] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 94ba8a18-32d5-471c-9d58-267df2af7aac + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f3e25e8-735a-11e9-8787-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f3e25e8-735a-11e9-8787-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f3100fa7-3382-4d2d-846e-486227be685e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '442' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f3100fa7-3382-4d2d-846e-486227be685e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f5573da-735a-11e9-b23d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f5573da-735a-11e9-b23d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ea965186-44d9-4868-aab1-0ffed69dac93] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '442' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ea965186-44d9-4868-aab1-0ffed69dac93 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f6cc22e-735a-11e9-a724-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f6cc22e-735a-11e9-a724-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['442'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6fbbf82b-cab6-4b55-b6c2-b18068b13105] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '442' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6fbbf82b-cab6-4b55-b6c2-b18068b13105 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [4f83fa5c-735a-11e9-bb33-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 4f83fa5c-735a-11e9-bb33-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['394'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:12 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [83c96443-0695-4543-ad88-497ac3e8b1b6] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '394' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:12 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 83c96443-0695-4543-ad88-497ac3e8b1b6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [597ca7fa-735a-11e9-a93d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 597ca7fa-735a-11e9-a93d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c858596f-6ca2-4241-8e84-7c985cdcf08d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c858596f-6ca2-4241-8e84-7c985cdcf08d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5994b2b8-735a-11e9-a8d6-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5994b2b8-735a-11e9-a8d6-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:29 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [0c66744d-1fdd-4ec8-a153-754b4adbbb8d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0c66744d-1fdd-4ec8-a153-754b4adbbb8d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [59d92958-735a-11e9-9df4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 59d92958-735a-11e9-9df4-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516707627,"modificationTime":1557516707663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516708029,"modificationTime":1557516708053,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516708393,"modificationTime":1557516708413,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [6fae9c83-6c3d-40b0-9c04-90e3f95ccdf5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6fae9c83-6c3d-40b0-9c04-90e3f95ccdf5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5a182afa-735a-11e9-8f32-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5a182afa-735a-11e9-8f32-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1557516710485,"modificationTime":1557516710506,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['355'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:30 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [70c1f6e0-5a6f-4973-961c-26846165cc1f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 70c1f6e0-5a6f-4973-961c-26846165cc1f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5a1704ae-735a-11e9-9ed3-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5a1704ae-735a-11e9-9ed3-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516708398,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1557516708588,"modificationTime":1557516709719,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1557516710015,"modificationTime":1557516710015,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1557516710168,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1129'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8fa9649e-0cf9-4d7e-9c37-972694a220da] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8fa9649e-0cf9-4d7e-9c37-972694a220da + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b1cecc0-735a-11e9-8e51-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b1cecc0-735a-11e9-8e51-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [c563bd44-2b54-4466-9ce8-0f6b7822fd45] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c563bd44-2b54-4466-9ce8-0f6b7822fd45 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b34c7be-735a-11e9-b0f9-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b34c7be-735a-11e9-b0f9-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:31 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e16dc381-853c-4a25-b71a-3f91cc2ff4eb] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e16dc381-853c-4a25-b71a-3f91cc2ff4eb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b4b7b68-735a-11e9-871c-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b4b7b68-735a-11e9-871c-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [52cfcf30-1014-4b62-b2de-94033db3e31c] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 52cfcf30-1014-4b62-b2de-94033db3e31c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b62a3d8-735a-11e9-a0f2-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b62a3d8-735a-11e9-a0f2-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f9bdba1e-6aee-4239-8cd4-d89a1f0e5b5d] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f9bdba1e-6aee-4239-8cd4-d89a1f0e5b5d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b79b3e2-735a-11e9-8493-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b79b3e2-735a-11e9-8493-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [b953893d-e273-4914-9152-e328ac9a2077] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b953893d-e273-4914-9152-e328ac9a2077 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5b90efbe-735a-11e9-bad4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5b90efbe-735a-11e9-bad4-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8572ace8-ff71-418c-9c4c-19ad7efbae46] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8572ace8-ff71-418c-9c4c-19ad7efbae46 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5ba827f0-735a-11e9-8242-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5ba827f0-735a-11e9-8242-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e3b30c96-af94-4d88-ba9a-39f58657eaf1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e3b30c96-af94-4d88-ba9a-39f58657eaf1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5bbf8a36-735a-11e9-91d3-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5bbf8a36-735a-11e9-91d3-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:32 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [441518e6-a08d-4da1-b686-369bd9d7a946] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 441518e6-a08d-4da1-b686-369bd9d7a946 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5bd6b214-735a-11e9-8c19-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5bd6b214-735a-11e9-8c19-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e57f6583-a7a1-4eab-835a-371698bfb285] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e57f6583-a7a1-4eab-835a-371698bfb285 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5bee191c-735a-11e9-b1a8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5bee191c-735a-11e9-b1a8-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['256'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [7e147951-ea08-4ca0-ba4e-e9bda8e8880f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '256' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7e147951-ea08-4ca0-ba4e-e9bda8e8880f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c055aba-735a-11e9-917d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c055aba-735a-11e9-917d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['394'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [28921e49-a2a7-46d0-9c88-a05f2c717024] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '394' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 28921e49-a2a7-46d0-9c88-a05f2c717024 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c1d28ca-735a-11e9-acd7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c1d28ca-735a-11e9-acd7-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['394'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [f0b0b678-355c-405b-ac70-32e4a1b7df20] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '394' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f0b0b678-355c-405b-ac70-32e4a1b7df20 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c34cb98-735a-11e9-a747-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c34cb98-735a-11e9-a747-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['394'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [93d6ca46-a8c1-49ce-9ae7-2f55647c21d2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '394' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 93d6ca46-a8c1-49ce-9ae7-2f55647c21d2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c4c6830-735a-11e9-9e2a-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c4c6830-735a-11e9-9e2a-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=MSGETACLSTATUS&api-version=2018-09-01 response: - body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}'} + body: + string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['346'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [501f90a2-79fc-40f3-a616-621319127ff1] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '346' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 501f90a2-79fc-40f3-a616-621319127ff1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c644fec-735a-11e9-9a7d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c644fec-735a-11e9-9a7d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['1207'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:33 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d5ac449e-9190-480b-b795-3909919d690b] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:33 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d5ac449e-9190-480b-b795-3909919d690b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c7ca45a-735a-11e9-a3ae-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c7ca45a-735a-11e9-a3ae-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}'} + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1557516707259,"modificationTime":1557516710168,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['279'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d951a803-8a5e-46dc-8049-f91fb0c833a2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d951a803-8a5e-46dc-8049-f91fb0c833a2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5c94a5ba-735a-11e9-9e59-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c94a5ba-735a-11e9-9e59-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/data?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [39ba342d-a117-4ef2-b828-725a81dba0de] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 39ba342d-a117-4ef2-b828-725a81dba0de + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5cb2e9dc-735a-11e9-8e6d-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5cb2e9dc-735a-11e9-8e6d-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['938'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [392b20c6-8b24-48f3-bf1d-90c51831aad2] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 392b20c6-8b24-48f3-bf1d-90c51831aad2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5ccaa064-735a-11e9-b404-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5ccaa064-735a-11e9-b404-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706278,"modificationTime":1557516706303,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [2ac248cf-d449-4379-b317-f8d4b2b7121f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2ac248cf-d449-4379-b317-f8d4b2b7121f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5ce0f14a-735a-11e9-a8b8-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5ce0f14a-735a-11e9-a8b8-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [d0cfa349-eda9-4016-8be1-4cf1f671581a] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d0cfa349-eda9-4016-8be1-4cf1f671581a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5cfb4b5c-735a-11e9-b587-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5cfb4b5c-735a-11e9-b587-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['644'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:34 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [8b12b0a4-6eb0-4215-a5f4-9e214384a1ce] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:34 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8b12b0a4-6eb0-4215-a5f4-9e214384a1ce + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5d12d10c-735a-11e9-81a4-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d12d10c-735a-11e9-81a4-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706638,"modificationTime":1557516706663,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:35 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [9fe39c2b-c9ed-43a6-9d57-16fd6cfb3ee5] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9fe39c2b-c9ed-43a6-9d57-16fd6cfb3ee5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5d293824-735a-11e9-9ad7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d293824-735a-11e9-9ad7-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:35 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [81904687-f663-4caf-b032-e245ee8c6524] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 81904687-f663-4caf-b032-e245ee8c6524 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5d436d62-735a-11e9-8c3b-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d436d62-735a-11e9-8c3b-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 response: - body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'} + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['350'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:35 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [ef98dd77-9a83-4f93-9e4e-82f3e2e7238e] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ef98dd77-9a83-4f93-9e4e-82f3e2e7238e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5d5c1dfa-735a-11e9-b384-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d5c1dfa-735a-11e9-b384-480fcf66f040.0 method: GET uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 response: - body: {string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'} + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516706987,"modificationTime":1557516707084,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['303'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:35 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [558deff3-3b44-46ff-9a62-4b284810375f] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 558deff3-3b44-46ff-9a62-4b284810375f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK - request: body: null headers: - Accept: ['*/*'] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['0'] - User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 - Azure-Data-Lake-Store-SDK-For-Python] - x-ms-client-request-id: [5d72a49c-735a-11e9-90c7-480fcf66f040.0] + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d72a49c-735a-11e9-90c7-480fcf66f040.0 method: DELETE uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True response: - body: {string: '{"boolean":true}'} + body: + string: '{"boolean":true}' headers: - Cache-Control: ['no-cache, no-cache, no-store, max-age=0'] - Content-Length: ['16'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 10 May 2019 19:32:35 GMT'] - Expires: ['-1'] - Pragma: [no-cache] - Status: ['0x0'] - Strict-Transport-Security: [max-age=15724800; includeSubDomains] - X-Content-Type-Options: [nosniff] - x-ms-request-id: [e8ab4d21-ac82-4e09-9b54-6a3ad95c2f33] - x-ms-webhdfs-version: [17.04.24.00] - status: {code: 200, message: OK} + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 10 May 2019 19:32:35 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e8ab4d21-ac82-4e09-9b54-6a3ad95c2f33 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2449aa8a-93ea-11eb-a253-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1664fead-f1ab-4e37-846e-7ea3482ae7bb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2494c2d0-93ea-11eb-bfbd-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv + [3d07b94c-9d07-4bef-8f59-fe077d648824][2021-04-02T12:32:21.2084035-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:20 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3d07b94c-9d07-4bef-8f59-fe077d648824 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 24ab2eca-93ea-11eb-a2d4-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=56379f88-5267-4ceb-9c1b-840942b9a979&filesessionid=56379f88-5267-4ceb-9c1b-840942b9a979 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:20 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=56379f88-5267-4ceb-9c1b-840942b9a979&filesessionid=56379f88-5267-4ceb-9c1b-840942b9a979 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3533ea90-76cb-4431-9c51-32fb013a2b54 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 24c5bdfe-93ea-11eb-b055-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=56379f88-5267-4ceb-9c1b-840942b9a979&filesessionid=56379f88-5267-4ceb-9c1b-840942b9a979 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 10a9fdd2-8e55-4687-b2ee-bbbf76c36358 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 24e4436e-93ea-11eb-a114-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv + [79283382-fa16-463c-b5e0-7099fb1f99f2][2021-04-02T12:32:21.7239454-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 79283382-fa16-463c-b5e0-7099fb1f99f2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 24fada40-93ea-11eb-ad45-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f996510a-8fb1-4f3b-b038-73ec6b460e68&filesessionid=f996510a-8fb1-4f3b-b038-73ec6b460e68 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f996510a-8fb1-4f3b-b038-73ec6b460e68&filesessionid=f996510a-8fb1-4f3b-b038-73ec6b460e68 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 51a71e64-e0a3-489a-b7a0-1b1529f3a80f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2514efb0-93ea-11eb-bee4-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f996510a-8fb1-4f3b-b038-73ec6b460e68&filesessionid=f996510a-8fb1-4f3b-b038-73ec6b460e68 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - af9d8e02-87a8-4321-8b8c-21b97840898e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2530b4e6-93ea-11eb-8cd0-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt + [0372bcd9-d255-46ed-94f4-ecd742c519f9][2021-04-02T12:32:22.2239299-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0372bcd9-d255-46ed-94f4-ecd742c519f9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 25468710-93ea-11eb-9754-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6&filesessionid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:21 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6&filesessionid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 51f182c3-c1fd-43a0-ba37-364a4b70bf7b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2560029e-93ea-11eb-a3f3-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6&filesessionid=0fb0aca3-d64e-4b27-a1c3-1ec6a2e104f6 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bfd55c1e-488f-4b8e-af1f-3f6d5fb12d71 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2582cf18-93ea-11eb-b5a6-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5926c568-ff10-4867-9f89-ad81ac224b94 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 25990498-93ea-11eb-a8f6-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv + [6edface9-29c8-472d-979f-b6c59213603f][2021-04-02T12:32:22.9113729-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6edface9-29c8-472d-979f-b6c59213603f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 25afbeca-93ea-11eb-b720-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6ed9b731-8759-4608-9c79-733129e12b8c&filesessionid=6ed9b731-8759-4608-9c79-733129e12b8c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=6ed9b731-8759-4608-9c79-733129e12b8c&filesessionid=6ed9b731-8759-4608-9c79-733129e12b8c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b6882fc0-1283-4c29-8005-6d6a7e78e83e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 25cae7f4-93ea-11eb-8a39-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=6ed9b731-8759-4608-9c79-733129e12b8c&filesessionid=6ed9b731-8759-4608-9c79-733129e12b8c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a3ce7e9a-2484-4002-9bf3-ea1cc06609fa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 25eb6880-93ea-11eb-ac92-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv + [631880e7-6cb1-4240-ae97-dc6d7a1686d7][2021-04-02T12:32:23.4425586-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:22 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 631880e7-6cb1-4240-ae97-dc6d7a1686d7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2601b66c-93ea-11eb-8b0c-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c&filesessionid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c&filesessionid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 12914b74-8a9b-4a0f-b4ff-741ca3fa56f7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 261c1c76-93ea-11eb-9125-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c&filesessionid=4572f9c9-d2f9-4a93-8f83-b44834cbb67c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1a7302aa-fbcf-4b51-a6d6-d70d1c2ac8e1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 263893d0-93ea-11eb-ad4a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt + [52420564-6e52-4662-adc3-648a8bb17df4][2021-04-02T12:32:23.9581453-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 52420564-6e52-4662-adc3-648a8bb17df4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 264f1d42-93ea-11eb-8ea1-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=b88e05ab-4b05-477f-8a70-076c843bbb2b&filesessionid=b88e05ab-4b05-477f-8a70-076c843bbb2b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:23 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=b88e05ab-4b05-477f-8a70-076c843bbb2b&filesessionid=b88e05ab-4b05-477f-8a70-076c843bbb2b + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 80c1cc4c-e306-4e0b-bfa4-bf568233914a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 26695c9a-93ea-11eb-8232-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=b88e05ab-4b05-477f-8a70-076c843bbb2b&filesessionid=b88e05ab-4b05-477f-8a70-076c843bbb2b + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4d236a50-4a05-4349-9769-54db21b93cf6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 268ac750-93ea-11eb-b611-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 075974ac-f4b3-4466-9256-a328aea5ae49 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 26a1f8d0-93ea-11eb-aceb-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv + [a1376671-482b-47db-a694-664889e86e54][2021-04-02T12:32:24.6456208-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a1376671-482b-47db-a694-664889e86e54 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 26b88e06-93ea-11eb-8860-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=9ab308af-e8ba-4645-869d-2b2769e69699&filesessionid=9ab308af-e8ba-4645-869d-2b2769e69699 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=9ab308af-e8ba-4645-869d-2b2769e69699&filesessionid=9ab308af-e8ba-4645-869d-2b2769e69699 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ebedbc99-2f94-4e9d-b58a-ab37468b7489 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 26d2d4ee-93ea-11eb-aef0-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=9ab308af-e8ba-4645-869d-2b2769e69699&filesessionid=9ab308af-e8ba-4645-869d-2b2769e69699 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9e0ba28a-e280-4a61-bde0-39744735c530 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 26f056c2-93ea-11eb-9a98-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv + [d9c99055-eff4-4c39-b514-a8be0f515dfe][2021-04-02T12:32:25.1612090-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d9c99055-eff4-4c39-b514-a8be0f515dfe + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2707264c-93ea-11eb-9293-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=285b6d14-5610-4313-96ee-e3adaa01fc90&filesessionid=285b6d14-5610-4313-96ee-e3adaa01fc90 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:24 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=285b6d14-5610-4313-96ee-e3adaa01fc90&filesessionid=285b6d14-5610-4313-96ee-e3adaa01fc90 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - af0960ef-5b9c-4f86-a375-d2aff9b0ad35 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27211be8-93ea-11eb-8f13-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=285b6d14-5610-4313-96ee-e3adaa01fc90&filesessionid=285b6d14-5610-4313-96ee-e3adaa01fc90 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 90ea064b-e797-436a-8e65-e9d907691421 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 273e1266-93ea-11eb-a325-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt + [9bfc3e36-2a30-41cc-9e7b-6cda44ec518c][2021-04-02T12:32:25.6611340-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9bfc3e36-2a30-41cc-9e7b-6cda44ec518c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27545064-93ea-11eb-8caa-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=9595a25b-18fa-4d58-b330-718bd408b945&filesessionid=9595a25b-18fa-4d58-b330-718bd408b945 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=9595a25b-18fa-4d58-b330-718bd408b945&filesessionid=9595a25b-18fa-4d58-b330-718bd408b945 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 02b63d4b-c482-4101-b132-995516d03a6c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 276ebae2-93ea-11eb-874f-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=9595a25b-18fa-4d58-b330-718bd408b945&filesessionid=9595a25b-18fa-4d58-b330-718bd408b945 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 37066a96-6b79-4ab2-979f-0a0486e150e7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 278b7ec6-93ea-11eb-955f-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8cc3e535-08f1-4df1-b3aa-7cac96ef5c17 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27a32e98-93ea-11eb-8806-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c7ed4a32-a6a3-4ae0-965d-1dfe8eca0925 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27ba8e18-93ea-11eb-97a8-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt + [af1ef53d-244a-4e3a-9106-4c33dafe1c69][2021-04-02T12:32:26.4891971-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - af1ef53d-244a-4e3a-9106-4c33dafe1c69 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27d10186-93ea-11eb-9910-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f78ea8d5-6dff-46d6-9230-6fc84a293218&filesessionid=f78ea8d5-6dff-46d6-9230-6fc84a293218 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f78ea8d5-6dff-46d6-9230-6fc84a293218&filesessionid=f78ea8d5-6dff-46d6-9230-6fc84a293218 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 495a34b1-49e7-4bc7-92af-08fbe7487445 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 27eb5918-93ea-11eb-addb-186024804fa8.0 + method: POST + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f78ea8d5-6dff-46d6-9230-6fc84a293218&filesessionid=f78ea8d5-6dff-46d6-9230-6fc84a293218 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 829ba3a1-96d4-4cc5-92b2-04e411a87610 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28091534-93ea-11eb-900f-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617391278996,"modificationTime":1617391942767,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eaf2f924-0a5a-4182-ae32-6ce752247da5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 281fd810-93ea-11eb-90ed-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=MODIFYACLENTRIES&api-version=2018-09-01&aclSpec=user%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7%3Arwx + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6ab51bf7-d7dd-40b6-9b2b-e0f3e6038907 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2837c4ae-93ea-11eb-a730-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617391942767,"modificationTime":1617391946343,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941378,"modificationTime":1617391941552,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941900,"modificationTime":1617391942067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b9ec30aa-63da-4e95-81c2-a7d208df3c34 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 284f4eae-93ea-11eb-b917-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617391942767,"modificationTime":1617391944132,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617391944504,"modificationTime":1617391945846,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617391946189,"modificationTime":1617391946189,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617391946343,"modificationTime":1617391946343,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0f1d796a-378c-4276-b071-64ad4b1057b5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 286689e2-93ea-11eb-a812-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617391943091,"modificationTime":1617391943286,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391943623,"modificationTime":1617391943786,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391944127,"modificationTime":1617391944301,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d907d334-b4ae-4d72-b2ae-c05d28e0af20 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 287e84fa-93ea-11eb-9dca-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617391944821,"modificationTime":1617391944989,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391945334,"modificationTime":1617391945504,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391945843,"modificationTime":1617391946004,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 584a3cb7-ddb2-4fe0-a44b-d2e4768f12a3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28968a92-93ea-11eb-8f53-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 389f1bda-03a2-4096-80b2-dcf66849b7d2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28ad7106-93ea-11eb-b85c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617391946343,"modificationTime":1617391946662,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 50d371a8-207b-4671-a46a-d2a0b6d971a9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28c510ba-93ea-11eb-b5d4-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617391946658,"modificationTime":1617391946832,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 66eb9487-02f8-47bb-83a2-d81de227a142 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28dca9d2-93ea-11eb-ac7e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a05733d9-5e66-47f0-a9cd-91b51cb43467 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 28f3a336-93ea-11eb-acf4-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4d528e4c-2772-4bf2-96f5-289ad2e60f96 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 290a7e0c-93ea-11eb-9e3e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5ccad0b7-86cb-49bc-a49d-ee2272615035 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2920f5e4-93ea-11eb-9d9a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eddd9535-3f40-4b3e-af2b-153b8b5af91f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29388300-93ea-11eb-85e0-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2fdd4395-6803-4a88-ae05-dfc270f8f9d7 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 294fee9c-93ea-11eb-95fa-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 73a8100c-afdd-4197-b10d-ea3fe7b0df4a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29673ebe-93ea-11eb-9b53-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3b25dc40-f1d6-41fb-a7e9-789de341a321 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 297e9ba6-93ea-11eb-b2d5-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4227dbb0-22fa-4c47-b970-104b34506999 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2995f77e-93ea-11eb-ad53-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e33d3ec1-1256-413f-a5b0-095c576be0b1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29ac9a24-93ea-11eb-86cc-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b98bdc3d-e38f-469e-b160-b3b217f69258 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29c35954-93ea-11eb-91ff-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bd5a8d02-3069-48a9-92da-d9224c09fdb2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29da63ee-93ea-11eb-903e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - da5c9bec-5aac-421b-8233-f5756356c26c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 29f6b3a8-93ea-11eb-84f8-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 62802829-7c56-4120-b03b-83164636752e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a0da246-93ea-11eb-8f8b-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '618' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9fbf726f-6717-4d06-9dd5-daef289c4c23 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a247fe4-93ea-11eb-a225-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617391278996,"modificationTime":1617391942767,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:29 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eb0a8bf8-e2b3-45b6-a169-140f3aa6360a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a3b2c8a-93ea-11eb-8a21-186024804fa8.0 + method: PUT + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=REMOVEACLENTRIES&api-version=2018-09-01&aclSpec=user%3A3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4eb0b36d-51dc-4b64-8b98-0d0f09a76e73 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a53ffdc-93ea-11eb-bdf2-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:---","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f7ac146c-a563-44d2-9f7f-8ebc69595f14 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a6b32f8-93ea-11eb-b83c-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617391942767,"modificationTime":1617391946343,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941378,"modificationTime":1617391941552,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941900,"modificationTime":1617391942067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 93c6af2f-b668-4acd-8424-4688444afa6a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a84e3b8-93ea-11eb-bf0e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617391942767,"modificationTime":1617391946343,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9e7527d5-d0f9-44c6-879c-843373b6c4bb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2a9bfa9a-93ea-11eb-89f5-186024804fa8.0 + method: DELETE + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/data?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6f36e742-780e-487a-b1bf-9fe1ce953d62 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2ab5d0d8-93ea-11eb-b2b4-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941378,"modificationTime":1617391941552,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941900,"modificationTime":1617391942067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:30 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fdca7a63-a58b-4b78-a99b-42855dc88d97 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2acd6a5e-93ea-11eb-8044-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617391941378,"modificationTime":1617391941552,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4288ff85-b460-4494-9935-14d75f09cc9c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2ae3d2a2-93ea-11eb-9993-186024804fa8.0 + method: DELETE + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5d524c21-6a76-4534-832b-2de899ee6240 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2afd577e-93ea-11eb-8a6e-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617391941900,"modificationTime":1617391942067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cb49d9a6-7445-4b7e-94d1-73bcbe569e13 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2b155538-93ea-11eb-bf1a-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617391941900,"modificationTime":1617391942067,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b578fa56-c923-42ab-9012-d4fac195ac4a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2b2df45e-93ea-11eb-8fa3-186024804fa8.0 + method: DELETE + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dfe12ee2-fdb3-4712-ae58-81da56557d99 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2b4854c6-93ea-11eb-bec6-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 52cdf3ac-36f8-4c63-87cb-5106a5906b88 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2b600bd0-93ea-11eb-8322-186024804fa8.0 + method: GET + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617391942392,"modificationTime":1617391942598,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:31 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0b2f129c-530a-4328-85de-0a88c12895d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 2b76508a-93ea-11eb-beda-186024804fa8.0 + method: DELETE + uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir3a63a434-1fb7-4fc3-aa48-e3ffb9cafdf3/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:32:32 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6305bfdb-a6aa-453c-a17b-659f5df70688 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 54454122-93ec-11eb-9464-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 13398f79-ea3a-4720-a48e-3cd3a47c13f4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 54be5dc0-93ec-11eb-afdb-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv + [560e67eb-de72-4a38-92cc-b7751f640713][2021-04-02T12:48:01.0268187-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 560e67eb-de72-4a38-92cc-b7751f640713 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 54d875b4-93ec-11eb-81ab-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=89fc5168-9626-4468-ae69-a6c75a9dd75e&filesessionid=89fc5168-9626-4468-ae69-a6c75a9dd75e + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:00 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=89fc5168-9626-4468-ae69-a6c75a9dd75e&filesessionid=89fc5168-9626-4468-ae69-a6c75a9dd75e + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e858d106-a632-4fdc-97bc-0baf97a41034 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 54fb66f8-93ec-11eb-b7bd-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=89fc5168-9626-4468-ae69-a6c75a9dd75e&filesessionid=89fc5168-9626-4468-ae69-a6c75a9dd75e + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 373e1b8d-84c7-4a63-96e1-19a3acc853ab + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 552009a2-93ec-11eb-b8d0-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv + [885028a1-e460-4564-aad7-4c9a968e64d0][2021-04-02T12:48:01.6830152-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:00 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 885028a1-e460-4564-aad7-4c9a968e64d0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 553cb708-93ec-11eb-8363-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=48f09252-78bb-427a-a9f9-f6b2caf93b5d&filesessionid=48f09252-78bb-427a-a9f9-f6b2caf93b5d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:01 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=48f09252-78bb-427a-a9f9-f6b2caf93b5d&filesessionid=48f09252-78bb-427a-a9f9-f6b2caf93b5d + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 730ef993-96a6-45cf-9138-9699de777208 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 555b8a02-93ec-11eb-a135-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=48f09252-78bb-427a-a9f9-f6b2caf93b5d&filesessionid=48f09252-78bb-427a-a9f9-f6b2caf93b5d + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bfec1ade-24a3-41c1-8847-7bff7ce656a1 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 557f7a06-93ec-11eb-bf5c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt + [96ee45ed-7284-44a1-982f-3f6acbdb2f42][2021-04-02T12:48:02.2923479-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '288' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:01 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 96ee45ed-7284-44a1-982f-3f6acbdb2f42 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5599a042-93ec-11eb-a361-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=731db88a-bb6c-42b1-92b9-5155dc3d23f2&filesessionid=731db88a-bb6c-42b1-92b9-5155dc3d23f2 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:01 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=731db88a-bb6c-42b1-92b9-5155dc3d23f2&filesessionid=731db88a-bb6c-42b1-92b9-5155dc3d23f2 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f6e33840-a948-49fd-b5d3-1964a14ec5df + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 55bdf318-93ec-11eb-af07-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=731db88a-bb6c-42b1-92b9-5155dc3d23f2&filesessionid=731db88a-bb6c-42b1-92b9-5155dc3d23f2 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7859d719-19ef-47d0-8b0b-e705127fe0cb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 55e5505e-93ec-11eb-9c4a-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3c468604-7e2e-463f-b7ae-30e036ee5368 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5602c46e-93ec-11eb-89a9-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv + [b993c6ce-fe38-43d6-a5a8-645559151914][2021-04-02T12:48:03.1672805-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b993c6ce-fe38-43d6-a5a8-645559151914 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 561e607a-93ec-11eb-bf52-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=2b15ee89-938c-4e39-b9d0-2a66173f9792&filesessionid=2b15ee89-938c-4e39-b9d0-2a66173f9792 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:02 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=2b15ee89-938c-4e39-b9d0-2a66173f9792&filesessionid=2b15ee89-938c-4e39-b9d0-2a66173f9792 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ffae40f6-9495-4ecb-8bf7-e0da55c020ba + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 563eb9fe-93ec-11eb-9b7b-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=2b15ee89-938c-4e39-b9d0-2a66173f9792&filesessionid=2b15ee89-938c-4e39-b9d0-2a66173f9792 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:02 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4b942ebc-9110-4598-80f2-9e018848b499 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 56627bd0-93ec-11eb-ae7b-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv + [19d63266-9ece-4478-ae25-6950c9ac7a1e][2021-04-02T12:48:03.7922223-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 19d63266-9ece-4478-ae25-6950c9ac7a1e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 567f587e-93ec-11eb-8193-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f0c871d1-66dd-46e0-bf0f-d19e299010ca&filesessionid=f0c871d1-66dd-46e0-bf0f-d19e299010ca + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:03 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f0c871d1-66dd-46e0-bf0f-d19e299010ca&filesessionid=f0c871d1-66dd-46e0-bf0f-d19e299010ca + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 7a2398da-2b62-44b5-a9d8-b841e8457170 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 569df2be-93ec-11eb-9967-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f0c871d1-66dd-46e0-bf0f-d19e299010ca&filesessionid=f0c871d1-66dd-46e0-bf0f-d19e299010ca + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4226627b-8786-44eb-8cd5-1e612f59cbe9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 56c0a1f4-93ec-11eb-aafe-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt + [a937a4f3-ba88-45f4-9ddf-bce28ae8d69a][2021-04-02T12:48:04.4015466-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:03 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a937a4f3-ba88-45f4-9ddf-bce28ae8d69a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 56da4250-93ec-11eb-a105-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=87a87382-060c-41b9-805a-1d66b11b27d0&filesessionid=87a87382-060c-41b9-805a-1d66b11b27d0 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:03 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=87a87382-060c-41b9-805a-1d66b11b27d0&filesessionid=87a87382-060c-41b9-805a-1d66b11b27d0 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 08c6041b-f6c8-4528-a914-4e9b297adbb8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 56fbd442-93ec-11eb-9613-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=87a87382-060c-41b9-805a-1d66b11b27d0&filesessionid=87a87382-060c-41b9-805a-1d66b11b27d0 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - e07a600d-f716-496c-8367-905fec3d958f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 571cbed8-93ec-11eb-873a-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c6fffa5b-87b7-4f2c-a422-a479a4d9e6f3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 573637d8-93ec-11eb-9eb8-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv + [65d259e1-aed2-422f-92f1-c7a776ac8a67][2021-04-02T12:48:05.1827332-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 65d259e1-aed2-422f-92f1-c7a776ac8a67 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57530e7e-93ec-11eb-b3ce-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=75819542-0e91-4a29-99be-ff2370d4da8c&filesessionid=75819542-0e91-4a29-99be-ff2370d4da8c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:04 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=75819542-0e91-4a29-99be-ff2370d4da8c&filesessionid=75819542-0e91-4a29-99be-ff2370d4da8c + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b7ca8941-a377-49be-8e65-83c386be3db2 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57752eca-93ec-11eb-95a4-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=75819542-0e91-4a29-99be-ff2370d4da8c&filesessionid=75819542-0e91-4a29-99be-ff2370d4da8c + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:04 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4a20747d-1fc6-43ba-987e-ec2a8672e0a3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57970eba-93ec-11eb-b985-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv + [eef0d031-a182-4311-b48d-954be306f4f3][2021-04-02T12:48:05.7920587-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - eef0d031-a182-4311-b48d-954be306f4f3 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57b0e558-93ec-11eb-8170-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1816ffa1-1159-4481-b843-7d0f639be650&filesessionid=1816ffa1-1159-4481-b843-7d0f639be650 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:05 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=1816ffa1-1159-4481-b843-7d0f639be650&filesessionid=1816ffa1-1159-4481-b843-7d0f639be650 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8db7098f-36a2-4b2e-a64a-c981c624615e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57d446c0-93ec-11eb-bf3a-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=1816ffa1-1159-4481-b843-7d0f639be650&filesessionid=1816ffa1-1159-4481-b843-7d0f639be650 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b20ba348-0c3f-4c5d-934a-126331dec67a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 57f53e12-93ec-11eb-b5c5-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt + [f96b0faa-f53f-49f0-9ba1-0de1714da1d0][2021-04-02T12:48:06.4482589-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '295' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:05 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f96b0faa-f53f-49f0-9ba1-0de1714da1d0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 58132514-93ec-11eb-afe4-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=562da295-60a9-4da3-9978-72b2729cdcb1&filesessionid=562da295-60a9-4da3-9978-72b2729cdcb1 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:05 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=562da295-60a9-4da3-9978-72b2729cdcb1&filesessionid=562da295-60a9-4da3-9978-72b2729cdcb1 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a458d790-0884-4aec-abe8-cb8d4321f542 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 58310d4c-93ec-11eb-a311-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=562da295-60a9-4da3-9978-72b2729cdcb1&filesessionid=562da295-60a9-4da3-9978-72b2729cdcb1 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c35b0ed6-1dc8-4247-bff3-85be4b8d4afa + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5855b20c-93ec-11eb-b852-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/empty?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1f4dd1d9-7e19-44de-b3d6-06ae78b10d7c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 587394ee-93ec-11eb-a170-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single?OP=MKDIRS&api-version=2018-09-01 + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cbcbfc9b-d00a-4078-a260-63624e1d4a80 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5890ba00-93ec-11eb-af89-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder + does not exist: /azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt + [b10fb581-f61c-4f6c-badc-1cd42b601937][2021-04-02T12:48:07.4325609-07:00]","javaClassName":"java.io.FileNotFoundException"}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '312' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:06 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x8309000A' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b10fb581-f61c-4f6c-badc-1cd42b601937 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 58aa3562-93ec-11eb-af42-186024804fa8.0 + method: PUT + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f31511a2-edb3-41ee-a52b-34a7ae5db908&filesessionid=f31511a2-edb3-41ee-a52b-34a7ae5db908 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + ContentLength: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:06 GMT + Expires: + - '-1' + Location: + - https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=DATA&leaseid=f31511a2-edb3-41ee-a52b-34a7ae5db908&filesessionid=f31511a2-edb3-41ee-a52b-34a7ae5db908 + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 1bc6fe5b-aeee-4a74-bca4-29c7945610a0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 201 + message: Created +- request: + body: '123456' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '6' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 58c7cf80-93ec-11eb-9ab8-186024804fa8.0 + method: POST + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=APPEND&api-version=2018-09-01&syncFlag=CLOSE&offset=0&append=true&leaseid=f31511a2-edb3-41ee-a52b-34a7ae5db908&filesessionid=f31511a2-edb3-41ee-a52b-34a7ae5db908 + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '0' + Date: + - Fri, 02 Apr 2021 19:48:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 614fed36-fbd2-4487-8d2a-62cc58280789 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 593f0fe4-93ec-11eb-8ba6-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:07 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4779eb43-cc5f-4dd8-8fc6-dd7510dd5d1a + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 59613df4-93ec-11eb-80e1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392884619,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392885000,"modificationTime":1617392886644,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392887081,"modificationTime":1617392887081,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392887272,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:08 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 67a82531-572e-4638-b39e-b2074c40aab9 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 59d842cc-93ec-11eb-958b-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883378,"modificationTime":1617392883589,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883999,"modificationTime":1617392884198,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392884616,"modificationTime":1617392884807,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:10 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 56ef17c1-f0b1-4e11-ab2c-38c1b6850952 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5ae9d70a-93ec-11eb-9647-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392887628,"modificationTime":1617392887854,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:11 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 593996b1-4207-4222-b851-cbfbd1c6e2ba + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5c97517e-93ec-11eb-92f8-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:13 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 4bd1159c-3f0f-450c-b672-04f1b3687609 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5cb0cd8a-93ec-11eb-9282-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392884619,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392885000,"modificationTime":1617392886644,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392887081,"modificationTime":1617392887081,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392887272,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d19d07ee-05f2-4f97-8357-95ddf0bc881b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5cd10158-93ec-11eb-b03f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883378,"modificationTime":1617392883589,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883999,"modificationTime":1617392884198,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392884616,"modificationTime":1617392884807,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ca9a8a8d-3c85-4c7e-96cb-8b6499fc5632 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5cedb0e8-93ec-11eb-960f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392885409,"modificationTime":1617392885604,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392886033,"modificationTime":1617392886229,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392886639,"modificationTime":1617392886854,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 93327fb3-69b0-485b-963d-b28c98bf42fb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d0a87c8-93ec-11eb-b1d4-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/empty?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '57' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2c701468-8903-43a2-88b3-ff04597f7528 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d28be28-93ec-11eb-a42e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392887272,"modificationTime":1617392887632,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '327' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:14 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d573dc5c-de5e-4c04-ba6b-e8a0eb5a4a56 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d434b06-93ec-11eb-aea3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"single.txt","type":"FILE","blockSize":268435456,"accessTime":1617392887628,"modificationTime":1617392887854,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '355' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - f1db7984-31ed-4f4e-a8df-dda972b5e3d4 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d5e4cf8-93ec-11eb-b5c3-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 00b65b52-09da-440f-a273-317ea353e319 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d78b33e-93ec-11eb-bed7-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d59b04c6-5fe0-42fb-a3fc-111f5ecf3e61 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5d964d22-93ec-11eb-af6f-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d596da95-4859-4696-b4b6-0dc379c9cfcb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5db08be8-93ec-11eb-a138-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:15 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - c1a4c2d1-7632-4324-bbc7-697342ddab73 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5dce9f02-93ec-11eb-9afc-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 64887a91-acd2-4610-971e-1ef79dcb084b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5dea3f86-93ec-11eb-a86b-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 6a15bfee-c48c-4e07-8796-77cfd60a884f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e087d92-93ec-11eb-8ef2-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8d53d530-f06c-4372-a226-7ca917a24145 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e22d824-93ec-11eb-b7bd-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 881c6a00-caaa-414f-841d-7377f0f99a41 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e3d6500-93ec-11eb-973d-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - bcfd4eda-ac61-4181-8187-68e4d8d370bb + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e5aff1c-93ec-11eb-bd1d-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '448' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:16 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - dc38f5ff-1a93-4929-88b5-7bd8aabe39bc + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e76b4ae-93ec-11eb-89dd-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 90b1aa2c-130f-4886-b976-f8315821e1a5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5e947a74-93ec-11eb-b5c0-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3f55f2c6-6564-451d-bb66-09564a306f2e + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5eaf5574-93ec-11eb-82b7-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0ebfcea2-b3b9-4dc7-946a-fbf7d94d975d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5ec94618-93ec-11eb-9fc1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:3883e0e8-9ad3-440d-b6f6-6ed492ae1ae7:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '810' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:17 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b7b5c60c-e5bc-428b-b0cf-763d40379487 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5f22083e-93ec-11eb-80ad-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 0aa05bb4-d537-459f-b214-af8a87680972 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5f437498-93ec-11eb-932a-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392884619,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392885000,"modificationTime":1617392886644,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392887081,"modificationTime":1617392887081,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392887272,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:18 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - a7e60d8c-2125-4e16-8085-b4075ae7de74 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 5fbed226-93ec-11eb-b3c0-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883378,"modificationTime":1617392883589,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392883999,"modificationTime":1617392884198,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392884616,"modificationTime":1617392884807,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:19 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 651c9acd-b92b-4266-9654-6165239a3411 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 60983e74-93ec-11eb-be25-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"a","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392884619,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"b","type":"DIRECTORY","blockSize":0,"accessTime":1617392885000,"modificationTime":1617392886644,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"empty","type":"DIRECTORY","blockSize":0,"accessTime":1617392887081,"modificationTime":1617392887081,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":0,"pathSuffix":"single","type":"DIRECTORY","blockSize":0,"accessTime":1617392887272,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1129' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:21 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 60676b88-4110-4d36-8d81-40804aa0c54b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 62831c2c-93ec-11eb-9872-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5e948b60-fac2-41c9-a38a-31a5bfc5bd95 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 629c2352-93ec-11eb-a3f1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:23 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 710f2d6b-7a2c-42e2-b147-ccb3788da700 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 62b5ef3e-93ec-11eb-a262-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ccfc4477-b64e-4b13-b6c9-4307a6214e30 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 62d3140c-93ec-11eb-a2ec-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 26b56272-3a83-4d2f-91c3-1320ddd3e2ad + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 62f3464a-93ec-11eb-b571-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ce162abd-433c-4f1f-9d44-2692a40b579f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6310c2ac-93ec-11eb-8cb5-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 252bc2bc-ba01-4fce-acee-85d69984d070 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 632b004c-93ec-11eb-8d0c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/x.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 9a377a17-5abe-4136-841f-74b6ab393f56 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 634936b8-93ec-11eb-8c8e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/y.csv?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:24 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8f9da5e6-101d-4f84-8b23-9cce55760466 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63628eb6-93ec-11eb-b941-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b/z.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 319ebfc9-9194-49e0-9980-0668923a6be0 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63807a42-93ec-11eb-ac89-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single/single.txt?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '400' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 2f032430-2147-4451-83dc-3be07b3834d8 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63a46152-93ec-11eb-9dbf-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/a?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '706' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 245d0f5f-4c7f-4a3f-abad-0d928d5f6e1f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63c18430-93ec-11eb-b9c1-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/b?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '706' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 5ae6f92a-622d-4ca7-b000-b8c2794da22c + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63dbe17a-93ec-11eb-b00e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data/single/single?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '706' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:25 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - abd948c9-7f64-4dea-8629-e83d8fbe3f28 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 63f674be-93ec-11eb-9118-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=MSGETACLSTATUS&api-version=2018-09-01 + response: + body: + string: '{"AclStatus":{"entries":["user::rwx","user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","group::rwx","mask::rwx","other::---","default:user::rwx","default:user:0b4981ee-5729-4ed3-b600-c5ffb6530385:rwx","default:user:6d86a146-d7dc-49d0-862f-1897c5dd2afe:rwx","default:user:a0b3cb87-9ca9-4769-af48-e687823d8937:rwx","default:user:aff5c067-59ea-42e4-919a-f7dd0b162a78:rwx","default:group::rwx","default:mask::rwx","default:other::---"],"owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","permission":"770","stickyBit":false}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '706' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - fa7c128c-7740-4163-8423-1c346f74e300 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6416a894-93ec-11eb-92dd-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '1207' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - da89ae23-d7fa-409e-9126-22095b7d8711 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 64375236-93ec-11eb-883e-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":0,"pathSuffix":"","type":"DIRECTORY","blockSize":0,"accessTime":1617392882986,"modificationTime":1617392887272,"replication":0,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '279' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - d6142871-8f25-463d-8f4a-5071a38eb6b6 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6452791c-93ec-11eb-9679-186024804fa8.0 + method: DELETE + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/data?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 768fc4c0-4ec8-41b7-a972-1293bfcaa638 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 647255a6-93ec-11eb-94e9-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '938' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:26 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - ecf21dcd-e416-4aee-8d4f-61c87f43f184 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 64987c40-93ec-11eb-9362-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392881257,"modificationTime":1617392881464,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - b0aad88a-44ae-4a31-8e97-bb00e8fb70af + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 64b42c86-93ec-11eb-a894-186024804fa8.0 + method: DELETE + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/x.csv?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 8fafa368-6261-45fb-a7bb-f6f6473203d5 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 64d17878-93ec-11eb-ad41-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '644' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - cfe34ce2-1518-4fcf-af3f-ce40fb3fd534 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 64ec7a8c-93ec-11eb-9334-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392881885,"modificationTime":1617392882104,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 16d9e9d8-a48e-48d6-a733-32dec560ca2d + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6506ecc2-93ec-11eb-8fc7-186024804fa8.0 + method: DELETE + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/y.csv?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:27 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3b2fd2ea-53dd-4f0e-9650-d0aa7c3a3f6f + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 652d64fa-93ec-11eb-9e0c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000 + response: + body: + string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '350' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3ccfad8c-37ab-4154-a7eb-8c2045ba4c51 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 6548b30a-93ec-11eb-930c-186024804fa8.0 + method: GET + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=GETFILESTATUS&api-version=2018-09-01 + response: + body: + string: '{"FileStatus":{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1617392882531,"modificationTime":1617392882761,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '303' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 3c66da1e-cf2d-4423-9134-8ddfd85c5d2b + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.6 (Windows-10-10.0.19041-SP0) azure.datalake.store.lib/0.0.52 Azure-Data-Lake-Store-SDK-For-Python + x-ms-client-request-id: + - 65623080-93ec-11eb-bc71-186024804fa8.0 + method: DELETE + uri: https://127.0.0.1:8888/webhdfs/v1/azure_python_sdk_test_dir782310a1-ce67-4cb5-9df6-023106c9cb1f/z.txt?OP=DELETE&api-version=2018-09-01&recursive=True + response: + body: + string: '{"boolean":true}' + headers: + Cache-Control: + - no-cache, no-cache, no-store, max-age=0 + Content-Length: + - '16' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 02 Apr 2021 19:48:28 GMT + Expires: + - '-1' + Pragma: + - no-cache + Status: + - '0x0' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + X-Content-Type-Options: + - nosniff + x-ms-request-id: + - 34429d79-016f-479d-863e-f0958622a812 + x-ms-webhdfs-version: + - 17.04.24.00 + status: + code: 200 + message: OK version: 1 diff -Nru azure-data-lake-store-python-0.0.51/tests/test_multithread.py azure-data-lake-store-python-0.0.52/tests/test_multithread.py --- azure-data-lake-store-python-0.0.51/tests/test_multithread.py 2020-10-15 20:08:31.000000000 +0000 +++ azure-data-lake-store-python-0.0.52/tests/test_multithread.py 2021-04-02 20:17:17.000000000 +0000 @@ -467,24 +467,34 @@ with setup_tree(azure): acluser = AZURE_ACL_TEST_APPID - def check_acl_perms(path, permission): + def check_acl_perms(path, permission, isdir=False): current_acl = azure.get_acl_status(path) acl_user_entry = [s for s in current_acl['entries'] if acluser in s] - assert len(acl_user_entry) == 1 + print(path, current_acl) + if isdir: + assert len(acl_user_entry) == 2 + else: + assert len(acl_user_entry) == 1 assert acl_user_entry[0].split(':')[-1] == permission files = list(azure.walk(test_dir)) directories = list(set([x[0] for x in map(os.path.split, files)])) permission = "---" - azure.modify_acl_entries(test_dir, acl_spec="user:"+acluser+":"+permission, recursive=True) - for path in files+directories: - check_acl_perms(path, permission) + azure.modify_acl_entries(test_dir, acl_spec="default:user:"+acluser+":"+permission+",user:"+acluser+":"+permission, recursive=True, number_of_sub_process=2) + for path in files: + check_acl_perms(path, permission, False) + + for path in directories: + check_acl_perms(path, permission, True) permission = "rwx" - azure.modify_acl_entries(test_dir, acl_spec="user:"+acluser+":"+permission, recursive=True) - for path in files+directories: - check_acl_perms(path, permission) + azure.modify_acl_entries(test_dir, acl_spec="default:user:"+acluser+":"+permission+",user:"+acluser+":"+permission, recursive=True, number_of_sub_process=2) + for path in files: + check_acl_perms(path, permission, False) + + for path in directories: + check_acl_perms(path, permission, True) @my_vcr.use_cassette @@ -503,7 +513,7 @@ directories = list(set([x[0] for x in map(os.path.split, files)])) permission = "rwx" - azure.set_acl(test_dir, acl_spec=set_acl_base + "user:"+acluser+":"+permission, recursive=True) + azure.set_acl(test_dir, acl_spec=set_acl_base + "user:"+acluser+":"+permission, recursive=True, number_of_sub_process=2) for path in files+directories: check_acl_perms(path, permission) @@ -515,7 +525,7 @@ acluser = AZURE_ACL_TEST_APPID permission = "rwx" - azure.modify_acl_entries(test_dir, acl_spec="user:"+acluser+":"+permission, recursive=True) + azure.modify_acl_entries(test_dir, acl_spec="user:"+acluser+":"+permission+",default:user:"+acluser+":"+permission, recursive=True, number_of_sub_process=2) files = list(azure.walk(test_dir)) directories = list(set([x[0] for x in map(os.path.split, files)])) @@ -525,7 +535,7 @@ acl_user_entry= [s for s in current_acl['entries'] if acluser in s] assert acl_user_entry != [] - azure.remove_acl_entries(test_dir, acl_spec="user:" + acluser, recursive=True) + azure.remove_acl_entries(test_dir, acl_spec="user:"+acluser+",default:user:"+acluser, recursive=True, number_of_sub_process=2) for path in files+directories: current_acl = azure.get_acl_status(path)