1. Issue: 123 give better 2FA
2. Issue with re-uploading the same file with overwrite=true failing
when the file is large.
3. Update help and readme to be more accurate.
4. Move Benchmarks and Cli to a new samples folder, since these are
examples of how to integrate the package into other scripts.
5. Add support for the latest version of python (3.6)

Address PR comment

Fix the FileExistsError to actually use the right variable in the method

Add an init to samples

Fix and re-record tests.

Address some PR comments.

remove guard parens and a semi colon

Re-add the record tag to test_save_up

And re-record the test.

Address PR comment for itemgetter.

update to include coveralls for dev as well as master.

Fix index doc to reflect reality.

new file is called dev_requirements not requirements.

update to include coveralls for dev as well as master.

Fix index doc to reflect reality.

new file is called dev_requirements not requirements.

Remove extra files synced.

These two files have been moved to samples.
This commit is contained in:
begoldsm 2017-01-12 12:19:45 -08:00
Родитель 8a95ac2c4f
Коммит acdaeb2ce3
87 изменённых файлов: 4309 добавлений и 3840 удалений

Просмотреть файл

@ -10,6 +10,7 @@ matrix:
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
install:
# Install dependencies

Просмотреть файл

@ -26,7 +26,7 @@ To play with the code, here is a starting point:
from azure.datalake.store import core, lib, multithread
token = lib.auth(tenant_id, username, password)
adl = core.AzureDLFileSystem(store_name, token)
adl = core.AzureDLFileSystem(token, store_name=store_name)
# typical operations
adl.ls('')
@ -53,18 +53,42 @@ To play with the code, here is a starting point:
# 16MB chunks
multithread.ADLDownloader(adl, "", 'my_temp_dir', 5, 2**24)
Command Line Sample Usage
------------------
To interact with the API at a higher-level, you can use the provided
command-line interface in "azure/datalake/store/cli.py". You will need to set
command-line interface in "samples/cli.py". You will need to set
the appropriate environment variables as described above to connect to the
Azure Data Lake Store.
Azure Data Lake Store. Below is a simple sample, with more details beyond.
To start the CLI in interactive mode, run "python azure/datalake/store/cli.py"
.. code-block:: bash
python samples\cli.py ls -l
Execute the program without arguments to access documentation.
Contents
========
.. toctree::
api
:maxdepth: 2
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
To start the CLI in interactive mode, run "python samples/cli.py"
and then type "help" to see all available commands (similiar to Unix utilities):
.. code-block:: bash
> python azure/datalake/store/cli.py
> python samples/cli.py
azure> help
Documented commands (type help <topic>):
@ -83,7 +107,7 @@ familiar with the Unix/Linux "ls" command, the columns represent 1) permissions,
.. code-block:: bash
> python azure/datalake/store/cli.py
> python samples/cli.py
azure> ls -l
drwxrwx--- 0123abcd 0123abcd 0 Aug 02 12:44 azure1
-rwxrwx--- 0123abcd 0123abcd 1048576 Jul 25 18:33 abc.csv
@ -103,7 +127,7 @@ named after the remote file minus the directory path.
.. code-block:: bash
> python azure/datalake/store/cli.py
> python samples/cli.py
azure> ls -l
drwxrwx--- 0123abcd 0123abcd 0 Aug 02 12:44 azure1
-rwxrwx--- 0123abcd 0123abcd 1048576 Jul 25 18:33 abc.csv
@ -124,7 +148,7 @@ For example, listing the entries in the home directory:
.. code-block:: bash
> python azure/datalake/store/cli.py ls -l
> python samples/cli.py ls -l
drwxrwx--- 0123abcd 0123abcd 0 Aug 02 12:44 azure1
-rwxrwx--- 0123abcd 0123abcd 1048576 Jul 25 18:33 abc.csv
-r-xr-xr-x 0123abcd 0123abcd 36 Jul 22 18:32 xyz.csv
@ -136,7 +160,7 @@ Also, downloading a remote file:
.. code-block:: bash
> python azure/datalake/store/cli.py get xyz.csv
> python samples/cli.py get xyz.csv
2016-08-04 18:57:48,603 - ADLFS - DEBUG - Creating empty file xyz.csv
2016-08-04 18:57:48,604 - ADLFS - DEBUG - Fetch: xyz.csv, 0-36
2016-08-04 18:57:49,726 - ADLFS - DEBUG - Downloaded to xyz.csv, byte offset 0

Просмотреть файл

@ -21,12 +21,11 @@
<PtvsTargetsFile>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile>
</PropertyGroup>
<ItemGroup>
<Content Include="dev_requirements.txt" />
<Content Include="docs\requirements.txt" />
<Content Include="License.txt" />
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="azure\datalake\store\cli.py" />
<Compile Include="azure\datalake\store\core.py" />
<Compile Include="azure\datalake\store\exceptions.py" />
<Compile Include="azure\datalake\store\lib.py" />
@ -37,8 +36,10 @@
<Compile Include="azure\datalake\__init__.py" />
<Compile Include="azure\__init__.py" />
<Compile Include="docs\source\conf.py" />
<Compile Include="samples\benchmarks.py" />
<Compile Include="samples\cli.py" />
<Compile Include="samples\__init__.py" />
<Compile Include="setup.py" />
<Compile Include="tests\benchmarks.py" />
<Compile Include="tests\conftest.py" />
<Compile Include="tests\fake_settings.py" />
<Compile Include="tests\settings.py" />
@ -57,6 +58,7 @@
<Folder Include="azure\datalake\store" />
<Folder Include="docs" />
<Folder Include="docs\source" />
<Folder Include="samples\" />
<Folder Include="tests" />
</ItemGroup>
<Import Project="$(PtvsTargetsFile)" Condition="Exists($(PtvsTargetsFile))" />

Просмотреть файл

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ProjectFiles</ProjectView>
</PropertyGroup>
</Project>

Просмотреть файл

@ -108,11 +108,12 @@ def auth(tenant_id=None, username=None,
if not authority:
authority = 'https://login.microsoftonline.com/'
context = adal.AuthenticationContext(authority +
tenant_id)
if not tenant_id:
tenant_id = os.environ.get('azure_tenant_id', "common")
context = adal.AuthenticationContext(authority +
tenant_id)
if tenant_id is None or client_id is None:
raise ValueError("tenant_id and client_id must be supplied for authentication")

Просмотреть файл

@ -321,6 +321,12 @@ class ADLUploader(object):
delimiter=None, overwrite=False, verbose=True):
if not overwrite and adlfs.exists(rpath):
raise FileExistsError(rpath)
# forcibly remove the target file before execution
# if the user indicates they want to overwrite the destination.
if overwrite and adlfs.exists(rpath):
adlfs.remove(rpath)
if client:
self.client = client
else:
@ -478,10 +484,18 @@ def put_chunk(adlfs, src, dst, offset, size, buffersize, blocksize, delimiter=No
return nbytes, None
def merge_chunks(adlfs, outfile, files, shutdown_event=None):
def merge_chunks(adlfs, outfile, files, shutdown_event=None, overwrite=False):
try:
# note that it is assumed that only temp files from this run are in the segment folder created.
# so this call is optimized to instantly delete the temp folder on concat.
# if somehow the target file was created between the beginning of upload
# and concat, we will remove it if the user specified overwrite.
if adlfs.exists(outfile):
if overwrite:
adlfs.remove(outfile)
else:
raise FileExistsError(outfile)
adlfs.concat(outfile, files, delete_source=True)
except Exception as e:
exception = repr(e)

Просмотреть файл

@ -20,6 +20,7 @@ import sys
import threading
import time
import uuid
import operator
from .exceptions import DatalakeIncompleteTransferException
@ -387,7 +388,8 @@ class ADLTransferClient(object):
merge_future = self._submit(
self._merge, self._adlfs, dst,
[chunk for chunk, _ in sorted(cstates.objects,
key=lambda obj: obj[1])])
key=operator.itemgetter(1))],
overwrite=self._parent._overwrite)
self._ffutures[merge_future] = parent
else:
self._fstates[parent] = 'finished'

Просмотреть файл

@ -3,7 +3,7 @@ azure-datalake-store
A pure-python interface to the Azure Data-lake Storage system, providing
pythonic file-system and file objects, seamless transition between Windows and
POSIX remote paths, high-performance up- and down-loader and CLI commands.
POSIX remote paths, high-performance up- and down-loader.
This software is under active development and not yet recommended for general
use.
@ -29,8 +29,8 @@ Auth
Although users can generate and supply their own tokens to the base file-system
class, and there is a password-based function in the ``lib`` module for
generating tokens, the most convenient way to supply credentials is via
environment parameters. This latter method is the one used by default in both
library and CLI usage. The following variables are required:
environment parameters. This latter method is the one used by default in
library. The following variables are required:
* azure_tenant_id
* azure_username
@ -117,32 +117,3 @@ be transferred, files matching a specific glob-pattern or any particular file.
# download the whole directory structure using 5 threads, 16MB chunks
ADLDownloader(adl, '', 'my_temp_dir', 5, 2**24)
Command Line Usage
------------------
The package provides the above functionality also from the command line
(bash, powershell, etc.). Two principle modes are supported: execution of one
particular file-system operation; and interactive mode in which multiple
operations can be executed in series.
.. code-block:: bash
python cli.py ls -l
Execute the program without arguments to access documentation.
Contents
========
.. toctree::
api
:maxdepth: 2
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

0
samples/__init__.py Normal file
Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -33,6 +33,7 @@ setup(name='azure-datalake-store',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=['tests']),

Просмотреть файл

@ -1,7 +1,11 @@
To run the test suite:
To run the test suite against the published package:
py.test -x -vvv --doctest-modules --pyargs azure-datalake-store tests
To run the test suite against a local build:
python setup.py develop
py.test -x -vvv --doctest-modules --pyargs azure.datalake.store tests
This test suite uses [VCR.py](https://github.com/kevin1024/vcrpy) to record the
responses from Azure. Borrowing from VCR's
[usage](https://vcrpy.readthedocs.io/en/latest/usage.html#record-modes), this
@ -22,6 +26,7 @@ environment variables should be defined:
* `azure_username`
* `azure_password`
* `azure_store_name`
* `azure_data_lake_store_name`
* `azure_subscription_id`
Optionally, you may need to define `azure_tenant_id` or `azure_url_suffix`.

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [7e537682-9a49-11e6-bb5b-acbc32b2789b]
x-ms-client-request-id: [173407e6-d9d0-11e6-aeea-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:12 GMT']
Date: ['Fri, 13 Jan 2017 20:37:24 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d3f9124d-bfd5-46e6-a244-721248eab5af]
x-ms-request-id: [183d3603-4e14-4b6e-98c6-4efd7b7bc1c7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [7e9e713a-9a49-11e6-b768-acbc32b2789b]
x-ms-client-request-id: [178b83c0-d9d0-11e6-9aa1-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355112178,"modificationTime":1477355112261,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339845116,"modificationTime":1484339845170,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:12 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [8259f1b3-049c-4f31-a414-ae6ec5db5249]
x-ms-request-id: [b4966dca-4fed-4914-818a-8a2bff9c49e5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [7f2ed7d8-9a49-11e6-a482-acbc32b2789b]
x-ms-client-request-id: [179ef49a-d9d0-11e6-ad21-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:13 GMT']
Date: ['Fri, 13 Jan 2017 20:37:25 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3b635a1c-e85c-4631-b472-dcd2858aa11c]
x-ms-request-id: [346295eb-59c5-4f11-985b-d1949270a7a5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [7fde34b8-9a49-11e6-bf3d-acbc32b2789b]
x-ms-client-request-id: [17b53f00-d9d0-11e6-bf2f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355112178,"modificationTime":1477355112261,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339845116,"modificationTime":1484339845170,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:14 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [63e23421-cbdb-4ddb-a3a1-7f18cb0be1de]
x-ms-request-id: [3c772d5d-2a4b-4459-891c-f88cc4e63178]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,24 +112,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [800af70c-9a49-11e6-8916-acbc32b2789b]
x-ms-client-request-id: [17c88280-d9d0-11e6-b31c-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:14 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [4ac72fdc-870d-434a-8b99-c709c7318f8a]
x-ms-request-id: [26eb77d0-83d2-475c-b3f4-857f3bb77df2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8078f41e-9a49-11e6-b4ee-acbc32b2789b]
x-ms-client-request-id: [17eafad0-d9d0-11e6-929d-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:15 GMT']
Date: ['Fri, 13 Jan 2017 20:37:25 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c0f6d3d1-74ed-4b4e-aa43-a9375892acaa]
x-ms-request-id: [ccf9f21a-dc39-4beb-b4f8-b6e1e3794e67]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,23 +34,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [80d23d5a-9a49-11e6-afe7-acbc32b2789b]
x-ms-client-request-id: [1846fbd8-d9d0-11e6-a2a0-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=foo
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?group=foo&OP=SETOWNER
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:16 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [8e2c2c8a-b640-492c-b727-e6b4a87e13fd]
x-ms-request-id: [a59fbe69-d082-413a-bc7e-22205180630b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [80ec2812-9a49-11e6-9e31-acbc32b2789b]
x-ms-client-request-id: [185910c0-d9d0-11e6-90fc-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355115829,"modificationTime":1477355115926,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339846308,"modificationTime":1484339846370,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:15 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [6b845eac-a8fd-4ffe-96e9-021386801cfd]
x-ms-request-id: [228c1ece-7f30-4b61-8188-d8badc4c9527]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8123937e-9a49-11e6-98f1-acbc32b2789b]
x-ms-client-request-id: [186c1036-d9d0-11e6-80e9-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:16 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [aba15d24-648c-4317-9050-babaaf0739f0]
x-ms-request-id: [cceca320-7292-45e2-b040-0c916ff9fcb2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8195e23a-9a49-11e6-a392-acbc32b2789b]
x-ms-client-request-id: [188cde7a-d9d0-11e6-ad21-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:17 GMT']
Date: ['Fri, 13 Jan 2017 20:37:27 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [03f47fda-b287-449d-a8a9-f7b575cd5fda]
x-ms-request-id: [586639d8-2f1f-49ec-96fc-b7fb6222f6df]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [82397c7e-9a49-11e6-902c-acbc32b2789b]
x-ms-client-request-id: [18e5b894-d9d0-11e6-bab3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355118199,"modificationTime":1477355118268,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339847370,"modificationTime":1484339847431,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:17 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [1ef3cf8f-5b72-4eaa-a29b-ff2dfa0810d6]
x-ms-request-id: [7b5f462c-5839-4ffa-aaf3-48ade0b78e4b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,23 +60,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [827e76f6-9a49-11e6-aa53-acbc32b2789b]
x-ms-client-request-id: [18f94066-d9d0-11e6-be11-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETPERMISSION&permission=0550
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?permission=0550&OP=SETPERMISSION
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:18 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [3e336dcb-eda3-4e69-b7f0-24176008dfb1]
x-ms-request-id: [9734d7d2-5706-4824-b52d-e11e0ecdcfdd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [82afb43e-9a49-11e6-a137-acbc32b2789b]
x-ms-client-request-id: [190bed88-d9d0-11e6-8339-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355118199,"modificationTime":1477355118268,"replication":1,"permission":"550","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339847370,"modificationTime":1484339847431,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:18 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [ff042f6d-110b-4789-804b-e9605b067b52]
x-ms-request-id: [acf8396f-76ab-47aa-957c-fd2c77626e69]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [82d6ca88-9a49-11e6-a83a-acbc32b2789b]
x-ms-client-request-id: [191f3de8-d9d0-11e6-a5a2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355118199,"modificationTime":1477355118268,"replication":1,"permission":"550","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339847370,"modificationTime":1484339847431,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:19 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [03df5b42-2629-4a76-9de6-3ad8cc56c80e]
x-ms-request-id: [72b978c0-8399-4c11-8e66-712636e530f1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [82f598e6-9a49-11e6-b9e4-acbc32b2789b]
x-ms-client-request-id: [19328be2-d9d0-11e6-9614-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:19 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [6963717d-ddbf-4fc4-a0e7-c32002c3a61a]
x-ms-request-id: [10ccdcd2-f09a-4898-a35e-70c831dda16a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8329f208-9a49-11e6-be4d-acbc32b2789b]
x-ms-client-request-id: [19556e70-d9d0-11e6-a7d8-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:19 GMT']
Date: ['Fri, 13 Jan 2017 20:37:27 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2eb8710f-ce14-460c-b19f-c859c35f79b1]
x-ms-request-id: [d7092b67-3202-453c-8ba0-b28fbe288bb6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,9 +34,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [83682140-9a49-11e6-870f-acbc32b2789b]
x-ms-client-request-id: [19b9984a-d9d0-11e6-8cc1-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&owner=foo
response:
@ -44,13 +44,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:19 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [bb8b2590-0562-43b7-a2cd-1d7e62f52ce2]
x-ms-request-id: [b082d1e1-6d0d-4716-84e1-6138122c8102]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,23 +60,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8384cc46-9a49-11e6-930d-acbc32b2789b]
x-ms-client-request-id: [19cda1c6-d9d0-11e6-a67a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=foo
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?group=foo&OP=SETOWNER
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:20 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [91be16ae-fdc9-4236-b9b7-809cd88b1003]
x-ms-request-id: [f3a68555-5294-4caa-a4cb-8b3d3de621fb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,23 +86,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [83aaf5b0-9a49-11e6-a402-acbc32b2789b]
x-ms-client-request-id: [19df4f70-d9d0-11e6-8b57-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=foo&owner=foo
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?group=foo&OP=SETOWNER&owner=foo
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:20 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [03a552c7-ad5c-4be0-819f-288fe8160238]
x-ms-request-id: [cede1e57-9a71-418d-a566-a90488260485]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [83d2fba8-9a49-11e6-9722-acbc32b2789b]
x-ms-client-request-id: [19f0e0c0-d9d0-11e6-ae5d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355120178,"modificationTime":1477355120270,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339848697,"modificationTime":1484339848822,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:21 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [c51b5c8a-f9d2-43d8-9d8c-6cc70740e0d4]
x-ms-request-id: [94a35443-85b9-4ea1-989a-78aa60b167bc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8419295e-9a49-11e6-b828-acbc32b2789b]
x-ms-client-request-id: [1a0421d8-d9d0-11e6-a62e-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:21 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [24c63d2e-879b-43b6-948e-d4c9f79b9cee]
x-ms-request-id: [40d5fdfd-b9af-43b0-9628-b66252a7c3a6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8450bca2-9a49-11e6-9cab-acbc32b2789b]
x-ms-client-request-id: [1a274e4a-d9d0-11e6-9d92-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=GETCONTENTSUMMARY
response:
body: {string: '{"ContentSummary":{"directoryCount":5,"fileCount":31,"length":166954113,"quota":-1,"spaceConsumed":166954113,"spaceQuota":-1}}'}
body: {string: '{"ContentSummary":{"directoryCount":5,"fileCount":1,"length":11,"quota":-1,"spaceConsumed":11,"spaceQuota":-1}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['126']
Content-Length: ['111']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [004d8c6b-9f54-4f58-a7ad-655d2a41314a]
x-ms-request-id: [142e31c7-00e4-4cf2-a426-47a01a67ac88]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [84968cb4-9a49-11e6-9a9f-acbc32b2789b]
x-ms-client-request-id: [1a70f476-d9d0-11e6-a255-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37:30 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3e6a3301-88f1-4667-9585-d1f3bf0f2ef8]
x-ms-request-id: [2202c91b-85ac-4465-9b92-68ddd85c8427]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [84d63d26-9a49-11e6-8c69-acbc32b2789b]
x-ms-client-request-id: [1ac601ec-d9d0-11e6-8aa2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355122559,"modificationTime":1477355122686,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339850538,"modificationTime":1484339850594,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [8f28e9e4-b193-4274-8328-67853661c16b]
x-ms-request-id: [ea1adc05-9c22-43d0-b91c-8de16f2e6ebc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [850c6fda-9a49-11e6-b01c-acbc32b2789b]
x-ms-client-request-id: [1ad89fda-d9d0-11e6-b2bd-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355122559,"modificationTime":1477355122686,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339850538,"modificationTime":1484339850594,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f35aec96-b046-417c-8881-0645b6c9b375]
x-ms-request-id: [2d77dccf-578f-46de-8363-298debf507c2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [854de33e-9a49-11e6-aa10-acbc32b2789b]
x-ms-client-request-id: [1aeb34d2-d9d0-11e6-9bf2-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:23 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [2fe71bc2-c072-4690-9fc0-6afee5a2ef61]
x-ms-request-id: [57692228-6910-4258-8a8d-bb4595225a0a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [85777ba2-9a49-11e6-a850-acbc32b2789b]
x-ms-client-request-id: [1b0ef2b0-d9d0-11e6-8d2c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:24 GMT']
Date: ['Fri, 13 Jan 2017 20:37:30 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4afa699c-74dd-40fd-97ab-94694a07c45c]
x-ms-request-id: [01f2c285-6932-405d-ac31-1bb6af870746]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [85b1d228-9a49-11e6-8afe-acbc32b2789b]
x-ms-client-request-id: [1b6936c6-d9d0-11e6-b361-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355124033,"modificationTime":1477355124117,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339851587,"modificationTime":1484339851648,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:23 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [48c5a547-eecb-4a50-9178-95743eb8f3d7]
x-ms-request-id: [02afa485-af93-488b-9f73-23b8b26f36bc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [85cd2c8c-9a49-11e6-9660-acbc32b2789b]
x-ms-client-request-id: [1b7c8d98-d9d0-11e6-860e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355124033,"modificationTime":1477355124117,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339851587,"modificationTime":1484339851648,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:23 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [fc0d613a-8711-4c4c-8fad-767102695d0f]
x-ms-request-id: [f790bcec-d50c-4d76-8f19-5130c613710a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [85e8ce74-9a49-11e6-bcb6-acbc32b2789b]
x-ms-client-request-id: [1b8f8558-d9d0-11e6-9e3a-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:24 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [d7a499ff-c24c-45bd-851e-23a0111297cc]
x-ms-request-id: [6ee86ca8-3d57-4dc5-a32f-b672a861ca1c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [86327574-9a49-11e6-8ecf-acbc32b2789b]
x-ms-client-request-id: [1bb40ff0-d9d0-11e6-b131-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:24 GMT']
Date: ['Fri, 13 Jan 2017 20:37:32 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6d6675bb-c611-4497-8ce8-ef6452970112]
x-ms-request-id: [1d51d572-5348-4df5-acd1-74b427ee89dc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [867125c8-9a49-11e6-b1d5-acbc32b2789b]
x-ms-client-request-id: [1c0eb674-d9d0-11e6-bf6b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355125272,"modificationTime":1477355125365,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339852673,"modificationTime":1484339852736,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:25 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f2d87585-c69d-428a-8faa-156591a68381]
x-ms-request-id: [d07aa116-a349-49d3-86d5-b907ffc25e1c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8696e112-9a49-11e6-9cf2-acbc32b2789b]
x-ms-client-request-id: [1c21a490-d9d0-11e6-bc76-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355125272,"modificationTime":1477355125365,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339852673,"modificationTime":1484339852736,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:25 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [0f7bf664-9e41-4c2a-9e39-dcd59bcb6672]
x-ms-request-id: [8b935856-e9a5-4d6a-84e0-f323a88720ce]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [86b24e2c-9a49-11e6-a004-acbc32b2789b]
x-ms-client-request-id: [1c350414-d9d0-11e6-bb3d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:25 GMT']
Date: ['Fri, 13 Jan 2017 20:37:32 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5a938da9-9086-450a-bdfb-63ef17422632]
x-ms-request-id: [a388ef9b-defe-4ee7-abeb-e43da8cda171]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [86f1d19c-9a49-11e6-bffb-acbc32b2789b]
x-ms-client-request-id: [1c81af42-d9d0-11e6-aa93-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355125272,"modificationTime":1477355125365,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339852673,"modificationTime":1484339852736,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:26 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [ab020e32-baa3-428a-b54e-9d6ac1df353c]
x-ms-request-id: [7578bfa1-50d9-41c1-9caf-58b6ba709780]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [871debba-9a49-11e6-999f-acbc32b2789b]
x-ms-client-request-id: [1c94fde4-d9d0-11e6-a81d-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:25 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [cccb328f-d59c-4160-b1a2-4dd6035617eb]
x-ms-request-id: [7598fbc8-a0b7-4a6c-8f2c-ce1d6b62db25]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8750ea94-9a49-11e6-989a-acbc32b2789b]
x-ms-client-request-id: [1cb82278-d9d0-11e6-9f0d-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:27 GMT']
Date: ['Fri, 13 Jan 2017 20:37:33 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e36e52e3-e19c-4580-a927-7b49d0a56e0c]
x-ms-request-id: [78174f30-3e79-4039-9332-487ad433d07d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [879b4ddc-9a49-11e6-b967-acbc32b2789b]
x-ms-client-request-id: [1d153e18-d9d0-11e6-92a3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355127218,"modificationTime":1477355127321,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339854350,"modificationTime":1484339854409,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:27 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [1396de1e-1445-4ee4-8c2c-54b916b2392a]
x-ms-request-id: [c85b04ca-3893-4472-af83-776a8f6fe584]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [87b91966-9a49-11e6-a11f-acbc32b2789b]
x-ms-client-request-id: [1d28d95c-d9d0-11e6-bfb1-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:27 GMT']
Date: ['Fri, 13 Jan 2017 20:37:34 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [55e33228-10f4-4cf1-924b-c1701afcc251]
x-ms-request-id: [0bd435e6-5ded-459a-89b5-435701c0fa8d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [87db580a-9a49-11e6-92d8-acbc32b2789b]
x-ms-client-request-id: [1d6002b4-d9d0-11e6-b7b4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355127218,"modificationTime":1477355127321,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339854350,"modificationTime":1484339854409,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:27 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [de64bff3-6fa9-4bdc-823c-6f0a9b307551]
x-ms-request-id: [f50fe63a-f5b2-49f1-aa55-daa9ecba9de1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,24 +112,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [87f8a1a8-9a49-11e6-a87d-acbc32b2789b]
x-ms-client-request-id: [1d725226-d9d0-11e6-a86c-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:28 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [6f9fa603-b7ea-4438-94c0-9da9682fed82]
x-ms-request-id: [91ff6906-435e-41de-a455-f22f4a4cde26]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [881f4218-9a49-11e6-8941-acbc32b2789b]
x-ms-client-request-id: [1d930d2e-d9d0-11e6-8a83-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:27 GMT']
Date: ['Fri, 13 Jan 2017 20:37:35 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1332d427-9a7b-4493-a4d7-dc965ea21fae]
x-ms-request-id: [8518a2f8-5de1-45e2-b7ed-42e5c7177c8a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8875eada-9a49-11e6-8c11-acbc32b2789b]
x-ms-client-request-id: [1df39548-d9d0-11e6-a51f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355128512,"modificationTime":1477355128590,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339855792,"modificationTime":1484339855858,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:28 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [b8d449b0-4dcd-44c6-8bfd-d410137d4a75]
x-ms-request-id: [2559d1b9-ea92-474c-9d8e-cdf2af4008e7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [889234b4-9a49-11e6-bb55-acbc32b2789b]
x-ms-client-request-id: [1e06149a-d9d0-11e6-8a31-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:28 GMT']
Date: ['Fri, 13 Jan 2017 20:37:35 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [42f1dd3f-91cc-4a64-8993-de5c20e820a1]
x-ms-request-id: [83fb069f-1c3f-4186-91fc-bed28460f2ac]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [88af8064-9a49-11e6-a064-acbc32b2789b]
x-ms-client-request-id: [1e1bd666-d9d0-11e6-a076-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355128512,"modificationTime":1477355128590,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339855792,"modificationTime":1484339855858,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:29 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [7a46e14f-7e13-49e1-9538-ebc267686920]
x-ms-request-id: [a54fea57-cadc-4b31-bbf9-34d45d95171e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,24 +112,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [88e9a99a-9a49-11e6-bb6c-acbc32b2789b]
x-ms-client-request-id: [1e2e7208-d9d0-11e6-a734-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:29 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [a8ea1c5d-69a2-4fd1-b1bc-392930d77a66]
x-ms-request-id: [dbbbe208-2d6f-40c3-8021-a8c2a9ff8a3c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [890d5d54-9a49-11e6-bdf9-acbc32b2789b]
x-ms-client-request-id: [1e548b9a-d9d0-11e6-bbe4-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:29 GMT']
Date: ['Fri, 13 Jan 2017 20:37:36 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d6fd387d-824b-4656-8cf8-1c669577693c]
x-ms-request-id: [2351451f-91ce-4861-84c2-51d9ffbf9173]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8956c49e-9a49-11e6-8cfb-acbc32b2789b]
x-ms-client-request-id: [1ebfb57a-d9d0-11e6-9b7f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355130162,"modificationTime":1477355130247,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339857079,"modificationTime":1484339857154,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:30 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [cacff469-f58a-41c2-823e-c546bdf28e55]
x-ms-request-id: [da261d11-9928-40fa-b871-8cf34631b5cb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [89810be6-9a49-11e6-9412-acbc32b2789b]
x-ms-client-request-id: [1ed2ea8c-d9d0-11e6-b457-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355130162,"modificationTime":1477355130247,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339857079,"modificationTime":1484339857154,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:30 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [12063822-00e2-4ecc-9c24-7a42833f85c6]
x-ms-request-id: [dd49e0d0-8cf5-4000-a579-a56c1a829c88]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [899e2dfa-9a49-11e6-a438-acbc32b2789b]
x-ms-client-request-id: [1ee70414-d9d0-11e6-a6ec-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:30 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [d1048267-35b5-46e1-95b1-c05e379b1c49]
x-ms-request-id: [bb9ebba4-3bf6-4956-b699-e3b153792843]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [89cf085a-9a49-11e6-9a19-acbc32b2789b]
x-ms-client-request-id: [1f08cf24-d9d0-11e6-9a77-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:31 GMT']
Date: ['Fri, 13 Jan 2017 20:37:37 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e11c31d4-f4dc-43be-a2fa-484e4708ac13]
x-ms-request-id: [ec1ddb19-02b6-4d7d-bcd3-a2b5f81657e1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a1bff7a-9a49-11e6-864a-acbc32b2789b]
x-ms-client-request-id: [1f5dd1cc-d9d0-11e6-8088-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355131408,"modificationTime":1477355131524,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339858243,"modificationTime":1484339858301,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:31 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [332d71dc-1366-4fca-a531-3162b2f8397e]
x-ms-request-id: [489ab3e8-42c8-4998-ad5f-1a469d70f656]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a48b350-9a49-11e6-9596-acbc32b2789b]
x-ms-client-request-id: [1f705ba4-d9d0-11e6-ac3f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355131408,"modificationTime":1477355131524,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339858243,"modificationTime":1484339858301,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:31 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [bcc24d80-82c8-4e69-a5ad-e3b973a1b8e6]
x-ms-request-id: [c6f89798-bf25-4916-a61c-0a9262ddbc96]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a650328-9a49-11e6-a540-acbc32b2789b]
x-ms-client-request-id: [1f8292da-d9d0-11e6-9c47-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:32 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [cd0a2b31-c0d3-41c8-bfea-df8d29c0add3]
x-ms-request-id: [0c43bed4-9244-40dc-b49a-d4c68355f690]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a8bd958-9a49-11e6-beb4-acbc32b2789b]
x-ms-client-request-id: [1fa50264-d9d0-11e6-9dd3-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:32 GMT']
Date: ['Fri, 13 Jan 2017 20:37:39 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f8c16b60-cce3-48ab-a264-71fe08df5f40]
x-ms-request-id: [aa912899-1a15-4086-a1fa-5c5c152b6f78]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8ae1aa70-9a49-11e6-89a8-acbc32b2789b]
x-ms-client-request-id: [2007f2c0-d9d0-11e6-810b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355132562,"modificationTime":1477355132654,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339859266,"modificationTime":1484339859338,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:32 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f0261432-fbbd-4346-b56b-b5aa57349b80]
x-ms-request-id: [66ed5eff-55a2-4515-990e-3642911d12b1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8afcac6e-9a49-11e6-b6f7-acbc32b2789b]
x-ms-client-request-id: [201c2ec0-d9d0-11e6-b97c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355132562,"modificationTime":1477355132654,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339859266,"modificationTime":1484339859338,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:33 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [45a6ac95-1bc2-4900-bb59-5ed700608ad7]
x-ms-request-id: [1db387e0-7b77-4d01-ab45-8a70df61777f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b196958-9a49-11e6-8b67-acbc32b2789b]
x-ms-client-request-id: [202e5f6c-d9d0-11e6-ab83-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:32 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [b461c295-486f-42d2-a28f-ac8f4532010f]
x-ms-request-id: [dff2e939-47cc-4630-a56a-603247584b83]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b4a497e-9a49-11e6-87ed-acbc32b2789b]
x-ms-client-request-id: [205186fa-d9d0-11e6-8b3a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=MKDIRS
response:
@ -17,13 +17,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:32 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [01227470-7774-4142-84a9-7a08f00ea266]
x-ms-request-id: [a0feca86-b197-4fde-baa1-e24ea2706dcc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -33,9 +33,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b6586e4-9a49-11e6-ad78-acbc32b2789b]
x-ms-client-request-id: [2092db00-d9d0-11e6-a71c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=MKDIRS
response:
@ -44,13 +44,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:33 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [dfb5acc1-dcd9-4911-b9f9-370b962c7e61]
x-ms-request-id: [b70e2217-1880-4f85-adab-90cde2b7183f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b82189a-9a49-11e6-9042-acbc32b2789b]
x-ms-client-request-id: [20a7af48-d9d0-11e6-bb9f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355133977,"modificationTime":1477355133977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339860532,"modificationTime":1484339860532,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:33 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [1e96d381-9282-4ea2-aa20-c628d688cc15]
x-ms-request-id: [0f2ec3aa-3ca7-4806-a3c6-ef22818f64dc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b9c0138-9a49-11e6-83e9-acbc32b2789b]
x-ms-client-request-id: [20bab93e-d9d0-11e6-a75a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355133977,"modificationTime":1477355133977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339860532,"modificationTime":1484339860532,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:33 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [2fa59cfa-9178-4c23-b4a3-75135ecd6472]
x-ms-request-id: [59e86ba4-6a8b-4771-bb89-b0cfe1f053b1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,9 +111,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8bc67b5c-9a49-11e6-9b2a-acbc32b2789b]
x-ms-client-request-id: [20cd1cae-d9d0-11e6-a58d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=LISTSTATUS
response:
@ -122,13 +122,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:34 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [ff774b7a-3855-403d-9375-e36ab1b3bb78]
x-ms-request-id: [0000a4e5-936d-40ab-825e-0b62119f621c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8be26568-9a49-11e6-bf90-acbc32b2789b]
x-ms-client-request-id: [20df915e-d9d0-11e6-8681-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355133977,"modificationTime":1477355133977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339860532,"modificationTime":1484339860532,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:34 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [c7075ab6-9f94-426e-a09f-0761bc0ab29c]
x-ms-request-id: [9ff33691-45cb-45d3-886b-04c243ebab81]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8c0f58ec-9a49-11e6-94da-acbc32b2789b]
x-ms-client-request-id: [20f1ff62-d9d0-11e6-a933-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355133977,"modificationTime":1477355133977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339860532,"modificationTime":1484339860532,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:34 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [53934900-00dc-4f47-82fd-2ba21c1d9d78]
x-ms-request-id: [80e8c770-3fae-432b-afde-59b789cd94cc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8c2cecac-9a49-11e6-99e1-acbc32b2789b]
x-ms-client-request-id: [21045ef0-d9d0-11e6-9848-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:34 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [edba93dd-587b-4a42-9a85-c8a59c64dcac]
x-ms-request-id: [8d8dde68-cfa8-4c43-b16d-85e2e2b98737]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -216,9 +216,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8c5dc7d2-9a49-11e6-b787-acbc32b2789b]
x-ms-client-request-id: [211fa73a-d9d0-11e6-8133-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
@ -227,13 +227,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:35 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [dde9beb7-4375-4847-92ae-f6b143ff6d37]
x-ms-request-id: [d12d0325-bb82-4854-8651-3bac46fd083c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -242,24 +242,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8c7a404c-9a49-11e6-a20b-acbc32b2789b]
x-ms-client-request-id: [21320436-d9d0-11e6-9a64-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355112200,"modificationTime":1477355135414,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339845138,"modificationTime":1484339861298,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:34 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [215056f3-b108-4f8f-a505-1923b8d7ba49]
x-ms-request-id: [1ba25ae5-7fad-4e35-b24c-eb2f4d2ff335]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -269,24 +269,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8c9599b4-9a49-11e6-90e2-acbc32b2789b]
x-ms-client-request-id: [214504a2-d9d0-11e6-aeef-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:35 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b5607c53-5804-4b41-a38e-022320df7957]
x-ms-request-id: [1e942289-d90a-441c-af1c-ff9d0ced7028]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8cb89d38-9a49-11e6-ba6c-acbc32b2789b]
x-ms-client-request-id: [216949ba-d9d0-11e6-a4a9-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:35 GMT']
Date: ['Fri, 13 Jan 2017 20:37:41 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3ff35983-62cb-4bd5-be1d-9f009895f2d8]
x-ms-request-id: [17cd21c2-5f2d-4fc5-935d-de130e37cfae]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,9 +34,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8d0ad622-9a49-11e6-bd14-acbc32b2789b]
x-ms-client-request-id: [21ca11ec-d9d0-11e6-8b46-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=RENAME&destination=azure_test_dir%2Ffoo%2Ffoo
response:
@ -45,13 +45,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:36 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [038b7124-aa68-40f7-9433-d2ae5334ce0a]
x-ms-request-id: [f0027209-0acf-4dfa-86a7-f399642e1e15]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,24 +60,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8d2891b0-9a49-11e6-941b-acbc32b2789b]
x-ms-client-request-id: [21e85506-d9d0-11e6-8679-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1477355136241,"modificationTime":1477355136331,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1484339862271,"modificationTime":1484339862326,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:36 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e3d9a878-fb3d-4d1b-aee2-3e6c87fa5c07]
x-ms-request-id: [8181de30-e96a-4434-b494-3eaed46cf3b5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -87,9 +87,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8d43a434-9a49-11e6-b845-acbc32b2789b]
x-ms-client-request-id: [21fb8324-d9d0-11e6-8e8a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=RENAME&destination=azure_test_dir%2Ffoo%2Fbar
response:
@ -98,13 +98,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:36 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a2c9ad86-dad4-48f9-a0a3-6e53eec17168]
x-ms-request-id: [31837a9b-9894-48f3-a050-87668947651e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8d651446-9a49-11e6-acc3-acbc32b2789b]
x-ms-client-request-id: [221581ec-d9d0-11e6-84d5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355136241,"modificationTime":1477355136331,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339862271,"modificationTime":1484339862326,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:36 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [87f43367-2f54-4815-a9f5-a170f0dfa55b]
x-ms-request-id: [4219f979-48a4-4c1c-83af-899d87ef8587]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8d934dd4-9a49-11e6-ac83-acbc32b2789b]
x-ms-client-request-id: [2227d1ac-d9d0-11e6-9423-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355136241,"modificationTime":1477355136331,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339862271,"modificationTime":1484339862326,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:37 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3c29714e-9ce6-475c-ac93-3b1fa93cd40a]
x-ms-request-id: [0b43ac3d-0733-4d03-a475-4fe711c92533]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -166,24 +166,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8dae91de-9a49-11e6-addf-acbc32b2789b]
x-ms-client-request-id: [223a62f0-d9d0-11e6-97f0-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:37 GMT']
Date: ['Fri, 13 Jan 2017 20:37:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ba0bd5d1-1747-43cf-8cda-0c3597336e44]
x-ms-request-id: [563f5324-1134-4ffc-a8f7-decdb401f527]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8dd7ebb8-9a49-11e6-8c9f-acbc32b2789b]
x-ms-client-request-id: [225ba3f0-d9d0-11e6-ba5e-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=MKDIRS
response:
@ -17,13 +17,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:37 GMT']
Date: ['Fri, 13 Jan 2017 20:37:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f672534e-8550-4056-905b-5a6111796eac]
x-ms-request-id: [5bb29583-8bbc-4f8e-b981-d3b05ada06dd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -32,24 +32,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8df23880-9a49-11e6-8e02-acbc32b2789b]
x-ms-client-request-id: [229ce0da-d9d0-11e6-89e2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355136257,"modificationTime":1477355137852,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1900d335-9b7c-4753-8786-b3aa754ab3bf]
x-ms-request-id: [a83b0ddd-9617-4b40-9f20-1dcee25691aa]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -58,24 +58,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8e19eaa6-9a49-11e6-9544-acbc32b2789b]
x-ms-client-request-id: [22b0087a-d9d0-11e6-8366-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355136257,"modificationTime":1477355137852,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:37 GMT']
Date: ['Fri, 13 Jan 2017 20:37:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ef3796ea-0b8d-40c9-91d5-169b704ff732]
x-ms-request-id: [a6833ad6-aafc-477e-ad83-6c2ad1d31a4f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,25 +85,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8e354bd4-9a49-11e6-bd49-acbc32b2789b]
x-ms-client-request-id: [22c38386-d9d0-11e6-94c5-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:43 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [54d5af10-a948-4173-ba46-a444a7fd4f1f]
x-ms-request-id: [0692265f-fca6-43a1-92f7-cba225b5a1bd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -112,24 +112,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8e7497ee-9a49-11e6-a3c7-acbc32b2789b]
x-ms-client-request-id: [231f59ae-d9d0-11e6-b280-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1477355138700,"modificationTime":1477355138762,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1484339864510,"modificationTime":1484339864570,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3a78a6d8-8bc6-4529-9369-c0b00cc02703]
x-ms-request-id: [2858542f-ca8e-4358-96cf-63878f869959]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8e906988-9a49-11e6-b7b7-acbc32b2789b]
x-ms-client-request-id: [2332ba90-d9d0-11e6-8321-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b3ee54d3-bd50-46ff-9e1a-f046aed81330]
x-ms-request-id: [2259141a-2424-4c7a-84fc-282c8a84eebb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8eae9c6e-9a49-11e6-81ce-acbc32b2789b]
x-ms-client-request-id: [234a3a48-d9d0-11e6-8820-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1477355138700,"modificationTime":1477355138762,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1484339864510,"modificationTime":1484339864570,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [63c62660-35e7-46d1-9275-5243060dcd8c]
x-ms-request-id: [78b5e005-0dc6-47ca-8ffe-f22fc95067f9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -191,24 +191,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8ed62bc6-9a49-11e6-b86a-acbc32b2789b]
x-ms-client-request-id: [235d609a-d9d0-11e6-9785-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:39 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [34386be9-d5b1-4a1d-8ce6-9e595058fe89]
x-ms-request-id: [8a3356a3-c0bf-485d-9501-fca98d228717]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -217,24 +217,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8ef8127a-9a49-11e6-acfd-acbc32b2789b]
x-ms-client-request-id: [237800c2-d9d0-11e6-b849-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355136257,"modificationTime":1477355139774,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339862294,"modificationTime":1484339865221,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:39 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [00841237-8cd5-4e38-ab8f-3bc26f77225a]
x-ms-request-id: [ac1d5461-4b75-4b1c-870b-ee8000753b3b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -244,24 +244,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8f12abb6-9a49-11e6-81e4-acbc32b2789b]
x-ms-client-request-id: [238bd898-d9d0-11e6-adca-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:39 GMT']
Date: ['Fri, 13 Jan 2017 20:37:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f4ccb6e2-0184-40b9-89b1-96b979051a4c]
x-ms-request-id: [868a0e79-e288-453d-8665-8c3b64fc76a7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8f33f378-9a49-11e6-99f0-acbc32b2789b]
x-ms-client-request-id: [23ad76ee-d9d0-11e6-a860-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37:46 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a077473e-18b4-454f-ac42-aabdc4c21387]
x-ms-request-id: [ae403d5c-e7ca-4824-8ae8-0c5d878a039c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8fa9c2b8-9a49-11e6-8c3b-acbc32b2789b]
x-ms-client-request-id: [240159de-d9d0-11e6-9858-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355140403,"modificationTime":1477355140501,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339866011,"modificationTime":1484339866085,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [072cdf64-edb1-49b1-abb2-6cfeb9c788d4]
x-ms-request-id: [a18ed1fa-0466-4be7-ae9a-86c85299ff74]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8fc43aee-9a49-11e6-9678-acbc32b2789b]
x-ms-client-request-id: [24133378-d9d0-11e6-8fe4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355140403,"modificationTime":1477355140501,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339866011,"modificationTime":1484339866085,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [eec7063d-a1a7-4057-9352-520df2b1504e]
x-ms-request-id: [66d4a5e3-d3bc-4ed9-86db-02e139415930]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8fe01994-9a49-11e6-be96-acbc32b2789b]
x-ms-client-request-id: [2425f908-d9d0-11e6-9594-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37:46 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d36e31c5-0529-43b1-8d6b-78907705e433]
x-ms-request-id: [239b7fc7-f9d9-4012-bc49-3bfc16a86bcc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8ffd810a-9a49-11e6-bbdf-acbc32b2789b]
x-ms-client-request-id: [243b903a-d9d0-11e6-83e9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355140403,"modificationTime":1477355140501,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339866011,"modificationTime":1484339866085,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [eb22752d-377f-4acf-950d-b567b243e8c4]
x-ms-request-id: [a7f416db-0169-4e52-98de-93aff8ce41a4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [901bb224-9a49-11e6-adc2-acbc32b2789b]
x-ms-client-request-id: [244d3b26-d9d0-11e6-bec9-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [d0f3b41e-1e67-47b3-a476-50243e4b4614]
x-ms-request-id: [e6fd5ff4-e4ba-4751-84c7-65702c5ba8b2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [903f91f8-9a49-11e6-a596-acbc32b2789b]
x-ms-client-request-id: [246f1c42-d9d0-11e6-ad93-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37:47 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [66a5c528-67e1-4049-ac9b-575e62e6b51d]
x-ms-request-id: [1122d236-ac20-446a-b15f-38b25177cdd1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9080488a-9a49-11e6-96b1-acbc32b2789b]
x-ms-client-request-id: [24ccaee4-d9d0-11e6-84d8-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355142143,"modificationTime":1477355142243,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339867308,"modificationTime":1484339867380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:42 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [24b7bdca-cafd-463e-b6a9-247dfdaf003e]
x-ms-request-id: [87e6ef4b-03f5-4b91-83da-dd4a528ae725]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [909c5e78-9a49-11e6-99c6-acbc32b2789b]
x-ms-client-request-id: [24df4154-d9d0-11e6-9a02-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355142143,"modificationTime":1477355142243,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339867308,"modificationTime":1484339867380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:42 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [06a0c59b-3a90-48e2-826a-e8171fc06f59]
x-ms-request-id: [62dce552-7274-48b1-9563-39ddd613e6e5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [90be1946-9a49-11e6-a2d0-acbc32b2789b]
x-ms-client-request-id: [24f1a31c-d9d0-11e6-9f5c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&offset=3&read=true&length=3
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&length=3&offset=3
response:
body: {string: '456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:42 GMT']
Date: ['Fri, 13 Jan 2017 20:37:47 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b40e4e67-67e8-4f58-8e61-5f96ef06a0b4]
x-ms-request-id: [d1fa13bc-1a90-4e68-9f18-2909d6fd1f75]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [90dc7c4a-9a49-11e6-8a6c-acbc32b2789b]
x-ms-client-request-id: [2508abdc-d9d0-11e6-a263-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1477355142143,"modificationTime":1477355142243,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1484339867308,"modificationTime":1484339867380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:42 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [2be5dba5-9187-479c-a077-65ff302742f6]
x-ms-request-id: [da6812d2-a33d-4001-99f6-ffdcebd9acd6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [90f83438-9a49-11e6-a322-acbc32b2789b]
x-ms-client-request-id: [251b3706-d9d0-11e6-9400-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:43 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [ebff2ae6-efaa-4398-916e-acb8644c5ee4]
x-ms-request-id: [4b2aeb42-134a-4388-87fc-f9d72822d5d0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c66add92-9a4a-11e6-bb38-acbc32b2789b]
x-ms-client-request-id: [253f2658-d9d0-11e6-b1c4-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=MKDIRS
response:
@ -17,13 +17,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [70d908ad-867b-4e6d-8c7d-972320baf10d]
x-ms-request-id: [7dafb7ad-98a5-4049-b737-080a995bf702]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -33,25 +33,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c68cc2c2-9a4a-11e6-8374-acbc32b2789b]
x-ms-client-request-id: [257a87ae-d9d0-11e6-bd43-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=CREATE&write=true&overwrite=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37:48 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=CREATE&write=true&overwrite=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [80e07986-6ae6-4f8e-ab29-bdb49cd37898]
x-ms-request-id: [52364bd0-450d-4128-89bb-929b18902779]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -60,24 +60,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c6b2d98a-9a4a-11e6-bd52-acbc32b2789b]
x-ms-client-request-id: [2596bd6c-d9d0-11e6-939e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1477355662762,"modificationTime":1477355662762,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1484339868792,"modificationTime":1484339868792,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [4e1850b0-3296-4038-b652-e064320365c6]
x-ms-request-id: [8a711645-e909-4757-a861-9d60feec5e2c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c6d40568-9a4a-11e6-a4fb-acbc32b2789b]
x-ms-client-request-id: [25a8b362-d9d0-11e6-a457-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1477355662762,"modificationTime":1477355662762,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1484339868792,"modificationTime":1484339868792,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [60d1c2c8-3605-4ad1-aedf-994112c8c121]
x-ms-request-id: [3a183e26-88b8-4404-a507-a896bbb7f32d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c6f3dda4-9a4a-11e6-b9ac-acbc32b2789b]
x-ms-client-request-id: [25ba4974-d9d0-11e6-9ab4-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [c00cf60c-c08a-4fef-9305-04a294e27334]
x-ms-request-id: [7508d2a5-0a00-4c14-8953-18a9c3f654c5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,9 +139,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c71ea714-9a4a-11e6-a2bc-acbc32b2789b]
x-ms-client-request-id: [25d708ac-d9d0-11e6-93ae-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS
response:
@ -150,13 +150,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:22 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [994b899a-f018-4429-b775-ebb1003a7482]
x-ms-request-id: [001d86b8-28e5-4bc8-a480-6d9fe20a7cbd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -165,24 +165,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c73a381c-9a4a-11e6-8f14-acbc32b2789b]
x-ms-client-request-id: [25e8464a-d9d0-11e6-9f7d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1477355662531,"modificationTime":1477355663454,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1484339866032,"modificationTime":1484339869189,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:23 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [1e6d0946-93b7-4055-9273-2dadbac29f8c]
x-ms-request-id: [eee73328-d40f-48ac-8976-fcf9d48f8c87]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -192,24 +192,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c76b68c2-9a4a-11e6-b805-acbc32b2789b]
x-ms-client-request-id: [25f940fa-d9d0-11e6-8d89-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:34:23 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [64ca2a77-2432-47e2-aa35-91a181d06f0f]
x-ms-request-id: [e7b972fc-7368-41e1-a894-64997dc1a91d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -10,25 +10,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b7e6bc42-9a49-11e6-9099-acbc32b2789b]
x-ms-client-request-id: [4d2ed35c-d9d0-11e6-8342-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:48 GMT']
Date: ['Fri, 13 Jan 2017 20:38:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [245a4320-4b0a-4c76-b222-d71701d4bdc0]
x-ms-request-id: [5c1f4ca8-4769-4666-83b1-20c543002ec0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -37,24 +37,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b824ea9e-9a49-11e6-be58-acbc32b2789b]
x-ms-client-request-id: [4da02c26-d9d0-11e6-bb32-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355208644,"modificationTime":1477355208751,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339935662,"modificationTime":1484339935718,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:48 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [997c950d-8b46-4e1e-944a-6c2560cb063a]
x-ms-request-id: [95c00193-eebd-44bf-a4ab-55a37ddfe779]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -63,11 +63,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b844127a-9a49-11e6-bc5a-acbc32b2789b]
x-ms-client-request-id: [4db29b7a-d9d0-11e6-a974-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=11
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=11&offset=0
response:
body: {string: '1,2
@ -77,14 +77,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:48 GMT']
Date: ['Fri, 13 Jan 2017 20:38:55 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [cde38af1-8b93-4892-8e94-fc702ec8d6b4]
x-ms-request-id: [ed988c01-e3ae-4f57-8069-74a265230f3d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -93,24 +93,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b861b118-9a49-11e6-8a4c-acbc32b2789b]
x-ms-client-request-id: [4dd5ac5c-d9d0-11e6-849a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355208644,"modificationTime":1477355208751,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339935662,"modificationTime":1484339935718,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:49 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8c180092-48fa-44f2-b8af-07acb69cc3a1]
x-ms-request-id: [65c50437-b1d3-4d16-a3d5-ef97c3d98b60]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -119,24 +119,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b87cc502-9a49-11e6-9b9d-acbc32b2789b]
x-ms-client-request-id: [4de82476-d9d0-11e6-ab5c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355208644,"modificationTime":1477355208751,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339935662,"modificationTime":1484339935718,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:49 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [a0501ace-8163-49d6-84ac-cc1069e294a0]
x-ms-request-id: [1b9b7b3e-1d9e-4319-a63e-ce720734df8a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -145,24 +145,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b89ad290-9a49-11e6-a026-acbc32b2789b]
x-ms-client-request-id: [4dfaae8c-d9d0-11e6-9fa6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355208644,"modificationTime":1477355208751,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339935662,"modificationTime":1484339935718,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:49 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8941fe84-7b7c-4ff3-81fc-fa4294ba5b58]
x-ms-request-id: [4d8f3e2d-1065-4b80-9308-a006dbfe18f0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -172,24 +172,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b8b60008-9a49-11e6-a727-acbc32b2789b]
x-ms-client-request-id: [4e0d0f78-d9d0-11e6-82af-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:49 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4fbd8ab3-ac17-4486-bbe7-96d16fb6c9af]
x-ms-request-id: [be560b2d-f3c5-45fd-80c1-37e854797763]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b15ab48c-9a49-11e6-8762-acbc32b2789b]
x-ms-client-request-id: [4610dd8c-d9d0-11e6-bf24-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5e37ad50-60e0-4dc8-a7e0-37f6193f44b0]
x-ms-request-id: [50c735a8-47e3-4f47-acd5-15191091bb11]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -32,25 +32,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b175f4a4-9a49-11e6-b684-acbc32b2789b]
x-ms-client-request-id: [464f539c-d9d0-11e6-9c7c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38:43 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [44e874d7-d7cb-428c-8298-9f669570b5f8]
x-ms-request-id: [d234093b-d872-4729-9251-9ebc9e6eb9b3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b1abc1ba-9a49-11e6-af6d-acbc32b2789b]
x-ms-client-request-id: [468850d2-d9d0-11e6-a88c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355197896,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339923992,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3406c0da-4594-4fc0-ba14-7b00a6d55eb7]
x-ms-request-id: [763cc1f4-7567-4dd3-861c-7ec0b1e1a3b2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b1c5dbe2-9a49-11e6-9ca4-acbc32b2789b]
x-ms-client-request-id: [46ad096c-d9d0-11e6-aa6b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355197896,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339923992,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2db082d4-faba-442d-85ce-d0ce86d71ce6]
x-ms-request-id: [dabb580b-6b7a-4697-8d6d-4ff1f1f2536b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,23 +112,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b1e09aa2-9a49-11e6-92bc-acbc32b2789b]
x-ms-client-request-id: [46cbf150-d9d0-11e6-8f78-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=3&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=3&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4d1b45be-4469-468c-8945-e90ed294ac09]
x-ms-request-id: [c4f44fbf-5437-4f80-bd24-b0be4b586b3d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b2154180-9a49-11e6-ba1a-acbc32b2789b]
x-ms-client-request-id: [46f8551e-d9d0-11e6-a5ad-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355198552,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ceb68d0f-46e3-4395-a752-86268a5d3527]
x-ms-request-id: [17ed22b3-dbf3-4a3b-8e78-4c5c7891d398]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b230015a-9a49-11e6-bee3-acbc32b2789b]
x-ms-client-request-id: [4728e19a-d9d0-11e6-b5ae-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '123456'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1e052d57-e707-4a7a-8fcd-2345b1729675]
x-ms-request-id: [f3ade4d7-176c-4339-9e8b-b67183f2bc7b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -189,24 +189,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b2514650-9a49-11e6-967e-acbc32b2789b]
x-ms-client-request-id: [47465378-d9d0-11e6-b3af-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355198552,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [9a9751b8-66eb-4f48-b44e-b8dc991616e2]
x-ms-request-id: [71daa708-6b9d-4ee9-bfa7-1ecd676a067d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -215,24 +215,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b26cafe2-9a49-11e6-8a0c-acbc32b2789b]
x-ms-client-request-id: [4766d00c-d9d0-11e6-8127-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355198552,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38:44 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4a3eec3d-a197-44e0-9e7a-92169ff840b2]
x-ms-request-id: [9f475dd3-1b47-45b1-9d48-f35cbdf0e128]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -242,23 +242,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b2930b24-9a49-11e6-83b6-acbc32b2789b]
x-ms-client-request-id: [4785fcd4-d9d0-11e6-a9c0-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=6&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=6&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:39 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [245a1e6a-ed47-4359-90cc-488a983cc78d]
x-ms-request-id: [7a0365b2-f86a-4f11-be94-ec9468390cef]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -267,24 +267,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b2cc26b8-9a49-11e6-8918-acbc32b2789b]
x-ms-client-request-id: [47a2235e-d9d0-11e6-adc4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355199755,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:39 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [be3a0a9e-dbc2-4250-a2c3-dd187a99fda4]
x-ms-request-id: [2f13eedd-8fd1-4fea-b7fe-e9855bac106d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -293,24 +293,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b2e81efa-9a49-11e6-ba11-acbc32b2789b]
x-ms-client-request-id: [47c3c6dc-d9d0-11e6-ac6f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=9
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=9&offset=0
response:
body: {string: '123456789'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:39 GMT']
Date: ['Fri, 13 Jan 2017 20:38:45 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [7fc18bf4-eb2f-43d9-8d22-48045481bf44]
x-ms-request-id: [87d72102-c522-4cc1-8f5c-1d20516dd269]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -319,24 +319,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b30538d4-9a49-11e6-8f0c-acbc32b2789b]
x-ms-client-request-id: [47f8f058-d9d0-11e6-92cf-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355199755,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8c4807e3-2080-4b25-84b3-29cb9d3b623c]
x-ms-request-id: [e0ea770a-aa4c-47eb-b912-6590f681a56d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -345,24 +345,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b3207608-9a49-11e6-9a47-acbc32b2789b]
x-ms-client-request-id: [480b5f3a-d9d0-11e6-8d7a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355199755,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [443249fa-bd73-45d8-a291-6ab47bebf9b8]
x-ms-request-id: [9e86d62c-8992-4f75-817b-6e35c6b002db]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -371,24 +371,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b33c2e66-9a49-11e6-8d78-acbc32b2789b]
x-ms-client-request-id: [481d9ec2-d9d0-11e6-a768-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355197850,"modificationTime":1477355199755,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339923940,"modificationTime":1484339924742,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [299f5023-0534-4f7e-9a30-81b0b68a601a]
x-ms-request-id: [b1068897-8427-4bba-baea-80d465636b70]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -398,24 +398,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b3572240-9a49-11e6-a073-acbc32b2789b]
x-ms-client-request-id: [482ffe6e-d9d0-11e6-9063-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [6d7c169b-90a5-45dd-a5c1-ac78f6d26007]
x-ms-request-id: [d8f116ea-a378-4551-bcc7-61c4d2f34630]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b8da042e-9a49-11e6-953b-acbc32b2789b]
x-ms-client-request-id: [4e2fb086-d9d0-11e6-a490-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38:57 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b985c549-1933-4e48-aec2-03f384216afb]
x-ms-request-id: [57477abe-7c35-46b9-85e1-b35e971c3027]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b91639d2-9a49-11e6-9458-acbc32b2789b]
x-ms-client-request-id: [4edc65ee-d9d0-11e6-8317-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355210241,"modificationTime":1477355210349,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339937928,"modificationTime":1484339937973,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:49 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [2ee0c43c-f3c7-4f32-bd4b-970cffb31727]
x-ms-request-id: [683889b9-7639-4440-bf4c-fb266e07f189]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b931e68a-9a49-11e6-ba65-acbc32b2789b]
x-ms-client-request-id: [4eeed398-d9d0-11e6-b312-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=1000
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=1000&offset=0
response:
body: {string: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38:57 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ae34bd6a-acb6-46f5-b05f-d9e259ceff90]
x-ms-request-id: [dad542e6-e826-4184-89a8-0c05fe6eb9ed]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b94f4e78-9a49-11e6-a2a4-acbc32b2789b]
x-ms-client-request-id: [4f060964-d9d0-11e6-b51b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355210241,"modificationTime":1477355210349,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339937928,"modificationTime":1484339937973,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [2774220d-fa51-40c5-ba8b-04da62150058]
x-ms-request-id: [9e2ce4a5-0fb4-4d7d-a794-68f6e1a81c45]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b96a667e-9a49-11e6-9e23-acbc32b2789b]
x-ms-client-request-id: [4f1a794c-d9d0-11e6-9717-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355210241,"modificationTime":1477355210349,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339937928,"modificationTime":1484339937973,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ef949c58-8631-4676-b045-8abe5e647715]
x-ms-request-id: [bc769769-4d62-41f1-aaaa-3f1eb4aa7974]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b98bc27a-9a49-11e6-83e7-acbc32b2789b]
x-ms-client-request-id: [4f33a3ba-d9d0-11e6-9092-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355210241,"modificationTime":1477355210349,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339937928,"modificationTime":1484339937973,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [04067ccc-bab4-4d17-9099-1c794d6bfb97]
x-ms-request-id: [e4996938-e13c-4207-b6e4-faf1b6bf8a68]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b9a73336-9a49-11e6-af45-acbc32b2789b]
x-ms-client-request-id: [4f463558-d9d0-11e6-9094-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:50 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [61243ee7-6380-420d-b8cf-2fa9e673ea61]
x-ms-request-id: [c33c2694-a2a3-46e1-a5fd-09c493b13b6d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96f0ce4c-9a49-11e6-96bf-acbc32b2789b]
x-ms-client-request-id: [2b8a60f6-d9d0-11e6-83ea-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355153134,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339878720,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1344']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:53 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [50c2737a-c2eb-44c3-97e2-8b930a55a5ef]
x-ms-request-id: [68d582b1-e95b-4cde-b4e8-1b97ec24a442]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9c5ea1b0-9a49-11e6-b85e-acbc32b2789b]
x-ms-client-request-id: [35ff4514-d9d0-11e6-be80-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:02 GMT']
Date: ['Fri, 13 Jan 2017 20:38:16 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8547790c-12d8-4078-8d19-78d22a144fac]
x-ms-request-id: [0d9e7c32-d35d-4489-8dae-e6dd52ac3301]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ca0e226-9a49-11e6-a672-acbc32b2789b]
x-ms-client-request-id: [3661d978-d9d0-11e6-939c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355162474,"modificationTime":1477355162572,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339896759,"modificationTime":1484339896850,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:02 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [81c61bc9-428d-4a7f-ad37-d4a3ce9e8527]
x-ms-request-id: [265f5212-af65-4772-8e23-db68e637d068]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9cbe8708-9a49-11e6-ad3e-acbc32b2789b]
x-ms-client-request-id: [367466c2-d9d0-11e6-9371-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: 0123456789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:02 GMT']
Date: ['Fri, 13 Jan 2017 20:38:16 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d4f58121-1f91-4de9-8868-0bf0377d429a]
x-ms-request-id: [da059579-be80-44c5-8f20-76aa498c02d6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ce7a550-9a49-11e6-a2eb-acbc32b2789b]
x-ms-client-request-id: [36a77c4c-d9d0-11e6-89d9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355162474,"modificationTime":1477355162572,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339896759,"modificationTime":1484339896850,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:03 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [fcd8f88a-0f85-43fe-ae27-3592bbaaa348]
x-ms-request-id: [48becfae-86fd-4219-805b-ef936650a4d0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9d02d578-9a49-11e6-9ac0-acbc32b2789b]
x-ms-client-request-id: [36ba66e2-d9d0-11e6-ba10-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355162474,"modificationTime":1477355162572,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339896759,"modificationTime":1484339896850,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:02 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ea13a31b-73ff-4cb6-931e-9f2c0654dab2]
x-ms-request-id: [29abec83-0ba5-4616-bdb4-a10cf631e2a5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9d1e8ff4-9a49-11e6-a498-acbc32b2789b]
x-ms-client-request-id: [36ccfda4-d9d0-11e6-8363-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355162474,"modificationTime":1477355162572,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339896759,"modificationTime":1484339896850,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:02 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [5dae4a91-6718-420e-8aae-798458978e03]
x-ms-request-id: [ed35473b-40ce-465e-9853-c1cd8a923dfc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9d395026-9a49-11e6-8447-acbc32b2789b]
x-ms-client-request-id: [36dfb3fa-d9d0-11e6-8050-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355162474,"modificationTime":1477355162572,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339896759,"modificationTime":1484339896850,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:03 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [aafda8d9-cab6-43c9-8294-256ad4384b1e]
x-ms-request-id: [a8d44be1-a394-4ea0-9e97-671ec3b1787d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9d56e4f6-9a49-11e6-9f22-acbc32b2789b]
x-ms-client-request-id: [36f24e1a-d9d0-11e6-ae5a-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:03 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [75fc8ce6-8f9c-419e-8882-767fde742ac8]
x-ms-request-id: [ef2bb709-a389-40aa-90a7-78569827ade4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [391d95a8-9a4b-11e6-b168-acbc32b2789b]
x-ms-client-request-id: [5256d15a-d9d0-11e6-affe-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
@ -17,14 +17,14 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:34 GMT']
Date: ['Fri, 13 Jan 2017 20:39:03 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [958cc6ff-df4a-43e0-8ffc-bffdc501f465]
x-ms-request-id: [a3d0fe9f-04e5-46d8-bc26-e841770918bd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3941c114-9a4b-11e6-96d7-acbc32b2789b]
x-ms-client-request-id: [529c1940-d9d0-11e6-a6a5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355854967,"modificationTime":1477355854967,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339944336,"modificationTime":1484339944336,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [c5dbc906-9af7-4950-9834-511665d00e05]
x-ms-request-id: [3feb4922-40db-46f8-99ac-f7aa3f861ad1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,9 +60,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3963c5b6-9a4b-11e6-abb6-acbc32b2789b]
x-ms-client-request-id: [52aeb636-d9d0-11e6-b9c8-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?permission=0555&OP=SETPERMISSION
response:
@ -70,13 +70,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:34 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [230fd823-f2cd-46d8-bba9-c9feafd97511]
x-ms-request-id: [4d1e38e6-13bf-4a92-99db-c7defde49ace]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [398390c8-9a4b-11e6-933a-acbc32b2789b]
x-ms-client-request-id: [52c1cbe8-d9d0-11e6-994f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355854967,"modificationTime":1477355854967,"replication":1,"permission":"555","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339944336,"modificationTime":1484339944336,"replication":1,"permission":"555","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:34 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [414d1d26-412c-4988-89a8-5a72bbbba08e]
x-ms-request-id: [32c3c58c-673b-485b-8158-43ae3e1ca6bd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [39a526d2-9a4b-11e6-9c86-acbc32b2789b]
x-ms-client-request-id: [52d403fe-d9d0-11e6-8e05-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355854967,"modificationTime":1477355854967,"replication":1,"permission":"555","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339944336,"modificationTime":1484339944336,"replication":1,"permission":"555","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [83fabce9-6eca-46e8-9a78-3ac13c55191c]
x-ms-request-id: [ed45906c-2ba9-4a03-acec-fb34964eb8e0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [39c51098-9a4b-11e6-b248-acbc32b2789b]
x-ms-client-request-id: [52e62a2e-d9d0-11e6-a8ba-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355854967,"modificationTime":1477355854967,"replication":1,"permission":"555","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339944336,"modificationTime":1484339944336,"replication":1,"permission":"555","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [58a44a29-36e4-4de0-929a-40a48261c757]
x-ms-request-id: [4eecc14e-c09d-4a35-a0fb-32c83696c2c9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,26 +164,27 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['4']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [39e53440-9a4b-11e6-9762-acbc32b2789b]
x-ms-client-request-id: [52f85b5e-d9d0-11e6-be50-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=0&OP=APPEND&append=true
response:
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Operation
failed. failed with error 0x83090aa2 (Either the resource does not exist or
the current user is not authorized to perform the requested operation). [a0628539-7e29-455a-8fb6-10d719fb4b7c][2016-10-24T17:37:36.2698447-07:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"APPEND
failed with error 0x83090aa2 (Forbidden. ACL verification failed. Either the
resource does not exist or the user is not authorized to perform the requested
operation.). [1f9fbca3-961b-41e5-9b8b-50be474de825][2017-01-13T12:39:05.0733927-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['370']
Content-Length: ['388']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39:04 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x83090AA2']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a0628539-7e29-455a-8fb6-10d719fb4b7c]
x-ms-request-id: [1f9fbca3-961b-41e5-9b8b-50be474de825]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 403, message: Forbidden}
- request:
@ -193,9 +194,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3a04dcbe-9a4b-11e6-8843-acbc32b2789b]
x-ms-client-request-id: [5309ae80-d9d0-11e6-889c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?permission=0770&OP=SETPERMISSION
response:
@ -203,13 +204,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [12e6f552-78a8-4150-b6b0-b2271329a618]
x-ms-request-id: [23a5077f-cda3-4a94-9c39-071c1904e361]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -218,24 +219,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3a281678-9a4b-11e6-93d5-acbc32b2789b]
x-ms-client-request-id: [536b4302-d9d0-11e6-add4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355854967,"modificationTime":1477355854967,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339944336,"modificationTime":1484339944336,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [a0ca65d4-678a-4e01-858a-d653532c0bf8]
x-ms-request-id: [cf566555-cf6d-40a9-acba-0e298eae89ac]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -245,24 +246,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3a48d9b0-9a4b-11e6-baef-acbc32b2789b]
x-ms-client-request-id: [537db01a-d9d0-11e6-af08-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [7c3bf9d9-84df-40b5-afbe-11635cb20942]
x-ms-request-id: [b6b2aaf9-fb07-4791-988a-88831746d2d3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -272,9 +273,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3a6b9694-9a4b-11e6-896d-acbc32b2789b]
x-ms-client-request-id: [5398d568-d9d0-11e6-8ae3-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?OP=MKDIRS
response:
@ -283,13 +284,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [59f6506a-5ada-4d61-b608-5e52f5f29b6d]
x-ms-request-id: [22ebdd7c-d394-4db6-931c-063bf587ef38]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -299,9 +300,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3a8cd19e-9a4b-11e6-8eeb-acbc32b2789b]
x-ms-client-request-id: [53adf7f4-d9d0-11e6-99dc-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep/file?overwrite=true&write=true&OP=CREATE
response:
@ -310,14 +311,14 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39:05 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep/file?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [dd10e93f-d8d6-4264-8f0a-4a16324e1d67]
x-ms-request-id: [fe525e14-cb55-492f-bb87-c1fd5aed9782]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -327,9 +328,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3ab2911a-9a4b-11e6-87e3-acbc32b2789b]
x-ms-client-request-id: [53c3935e-d9d0-11e6-a518-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?permission=660&OP=SETPERMISSION
response:
@ -337,13 +338,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [994bd259-e21d-400f-9f03-6c2686448b09]
x-ms-request-id: [3236eeef-16cb-4925-916a-086af16238e0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -352,26 +353,27 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3ad12dba-9a4b-11e6-be2a-acbc32b2789b]
x-ms-client-request-id: [53d674a6-d9d0-11e6-a27a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?OP=LISTSTATUS
response:
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"ListStatus
failed with error 0x83090aa2 (Either the resource does not exist or the current
user is not authorized to perform the requested operation). [edd8406d-12a8-4af3-9280-b959ddc97819][2016-10-24T17:37:39.1564831-07:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"LISTSTATUS
failed with error 0x83090aa2 (Forbidden. ACL verification failed. Either the
resource does not exist or the user is not authorized to perform the requested
operation.). [db9ebd3a-ff55-4a66-8f70-bea538fae2cf][2017-01-13T12:39:07.7765387-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['363']
Content-Length: ['392']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:38 GMT']
Date: ['Fri, 13 Jan 2017 20:39:06 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x83090AA2']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [edd8406d-12a8-4af3-9280-b959ddc97819]
x-ms-request-id: [db9ebd3a-ff55-4a66-8f70-bea538fae2cf]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 403, message: Forbidden}
- request:
@ -381,9 +383,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bc574d0-9a4b-11e6-a113-acbc32b2789b]
x-ms-client-request-id: [54a5efbe-d9d0-11e6-90c3-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?permission=770&OP=SETPERMISSION
response:
@ -391,13 +393,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [3f4c1502-3b40-481d-a058-846ec31c9e52]
x-ms-request-id: [ecc3ed7d-e62b-4aac-9481-e68f52b52443]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -406,24 +408,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3be47b5a-9a4b-11e6-ba7f-acbc32b2789b]
x-ms-client-request-id: [54dcddec-d9d0-11e6-97f0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1477355857147,"modificationTime":1477355857400,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1484339946141,"modificationTime":1484339946295,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [5aeabd02-0f8f-41b6-bb72-85663ec64208]
x-ms-request-id: [b266d7ea-3b13-42d7-ba76-fe66b7823ac8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -432,24 +434,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3c03b27a-9a4b-11e6-8474-acbc32b2789b]
x-ms-client-request-id: [54ee7b86-d9d0-11e6-9990-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1477355857147,"modificationTime":1477355857400,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1484339946141,"modificationTime":1484339946295,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [01cf6a54-8ab0-42b0-8bf5-102ba07a5e03]
x-ms-request-id: [3cfa8964-b1df-41ac-8b36-1a8409f48d78]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -458,24 +460,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3c1e3476-9a4b-11e6-9b89-acbc32b2789b]
x-ms-client-request-id: [54fff39e-d9d0-11e6-a4e4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1477355857147,"modificationTime":1477355857400,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"deep","type":"DIRECTORY","blockSize":0,"accessTime":1484339946141,"modificationTime":1484339946295,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [6b1538df-94ed-4605-9bb3-dac3f6c82b8b]
x-ms-request-id: [5b3a1f59-3d3c-479b-befc-db6a774a5071]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -485,24 +487,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3c38b648-9a4b-11e6-9f86-acbc32b2789b]
x-ms-client-request-id: [55116d2c-d9d0-11e6-b8a5-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/deep?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:37:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [68a7899f-5b0d-48ee-84f5-dd7bcc809fc1]
x-ms-request-id: [eed1d5cb-2d17-4bec-be13-b73a8e8dbfe4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [442a9b0a-9a4b-11e6-b705-acbc32b2789b]
x-ms-client-request-id: [5532049c-d9d0-11e6-975a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39:08 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0bb6e2ae-8030-48ce-9e12-fbcc0fa83524]
x-ms-request-id: [08b25fbc-96b2-403b-b8e1-b3dcfede9879]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [4451617a-9a4b-11e6-9b24-acbc32b2789b]
x-ms-client-request-id: [557ff280-d9d0-11e6-8c85-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [7e28fe0f-4009-4950-aa57-651273337b11]
x-ms-request-id: [25f9f827-b60e-4ca9-ba65-9be7b2140a58]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,23 +60,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [447e9336-9a4b-11e6-92ac-acbc32b2789b]
x-ms-client-request-id: [55936ef0-d9d0-11e6-9175-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?owner=foo&OP=SETOWNER
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=SETOWNER&owner=foo
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e75a27d7-ab68-4990-8d3c-9108afb34235]
x-ms-request-id: [0198a0a4-a9c2-418b-b57a-1e54ae965609]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [449ca380-9a4b-11e6-9ffb-acbc32b2789b]
x-ms-client-request-id: [55a5495c-d9d0-11e6-b322-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [1030ce94-6896-40d7-a06b-ff5139af2e80]
x-ms-request-id: [8b06dd52-cc13-41a7-998b-c10dbde5db24]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [44b993b4-9a4b-11e6-99f5-acbc32b2789b]
x-ms-client-request-id: [55b8d134-d9d0-11e6-83c6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [4b9fbb74-a4ad-4606-907b-9b0e38e6cc7a]
x-ms-request-id: [7bdade57-7808-4dd7-921f-277eeaba4fdf]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,9 +138,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [44d9b5fe-9a4b-11e6-8eec-acbc32b2789b]
x-ms-client-request-id: [55cc45c6-d9d0-11e6-921b-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?group=bar&OP=SETOWNER
response:
@ -148,13 +148,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [52bd59dd-658b-4d56-b9e2-10dea7edddeb]
x-ms-request-id: [4b3bd8aa-5566-470a-9b92-9744f4cb24da]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [44f80d74-9a4b-11e6-bb2f-acbc32b2789b]
x-ms-client-request-id: [55de33e2-d9d0-11e6-9f5a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [d1b3483f-1749-45b8-be46-0e47d411fc9a]
x-ms-request-id: [c27fcb87-bb5b-409b-8805-5ab2a637e691]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,23 +190,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [45180e6e-9a4b-11e6-b040-acbc32b2789b]
x-ms-client-request-id: [55f25498-d9d0-11e6-af09-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?owner=foo&group=bar&OP=SETOWNER
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?group=bar&OP=SETOWNER&owner=foo
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [78dbb2e6-11a4-4d38-ace5-78f7fb747ade]
x-ms-request-id: [5dd05ca7-5708-471b-9e42-38c6eafd2950]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -215,24 +215,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [4531fcc8-9a4b-11e6-be2b-acbc32b2789b]
x-ms-client-request-id: [56047762-d9d0-11e6-b3ff-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [c6fa4009-cfa9-4cfe-8313-3442551f1fcf]
x-ms-request-id: [aa29db35-f7b5-4f9e-9bbd-3477f8a1b429]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -241,24 +241,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [4551e092-9a4b-11e6-a818-acbc32b2789b]
x-ms-client-request-id: [56179776-d9d0-11e6-8e8a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e1a9a411-7e21-4578-b8f5-0e47f37bbd53]
x-ms-request-id: [9aba0cd4-b177-4d6b-9698-92556bf1213e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -267,24 +267,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [4571088c-9a4b-11e6-9508-acbc32b2789b]
x-ms-client-request-id: [562b079a-d9d0-11e6-9c4c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [0ce75adf-ac08-4c00-97c9-7bb43a5f1612]
x-ms-request-id: [866c0ee1-ff72-437a-a4a7-d36427740925]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -293,24 +293,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [4590332e-9a4b-11e6-8afc-acbc32b2789b]
x-ms-client-request-id: [563e2a26-d9d0-11e6-81d9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [fc848795-5850-4f62-85d3-d9a1c7ad97a8]
x-ms-request-id: [b0aab927-7d80-4913-9f71-3b8b0e38c940]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -319,24 +319,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [45af97a8-9a4b-11e6-b6b3-acbc32b2789b]
x-ms-client-request-id: [56511066-d9d0-11e6-b056-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355873520,"modificationTime":1477355873520,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339949178,"modificationTime":1484339949178,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [46c1f6c0-755c-4be6-8293-02654f414c42]
x-ms-request-id: [44e11f4b-a2d5-4e33-8410-52e8c7dece3b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -346,9 +346,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [45d158f6-9a4b-11e6-bb3a-acbc32b2789b]
x-ms-client-request-id: [5664d268-d9d0-11e6-85de-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
response:
@ -357,13 +357,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [afcd77f4-87bd-4c48-9fa7-c9c5e6dcbd25]
x-ms-request-id: [e7a73d9f-6ea7-4d5b-ba73-6c31de7a7785]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3106547e-9a4b-11e6-91c3-acbc32b2789b]
x-ms-client-request-id: [4c86b0be-d9d0-11e6-a180-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:21 GMT']
Date: ['Fri, 13 Jan 2017 20:38:54 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ae6f720c-a317-4fa6-bdd2-7ae9625a4892]
x-ms-request-id: [b5a682c7-dbc0-48bf-ac51-97f747607344]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [312bff80-9a4b-11e6-a2f6-acbc32b2789b]
x-ms-client-request-id: [4cc533ca-d9d0-11e6-9f1b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355841396,"modificationTime":1477355841396,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339934539,"modificationTime":1484339934539,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:21 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [5da27f4f-1de4-42f6-8c43-353e218b0af3]
x-ms-request-id: [f3cfea62-cac9-4cd7-9341-0b3be8eb54d4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [314da338-9a4b-11e6-a98c-acbc32b2789b]
x-ms-client-request-id: [4cd72a64-d9d0-11e6-86a9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355841396,"modificationTime":1477355841396,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339934539,"modificationTime":1484339934539,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:21 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [3cc47fc9-997e-4c0d-aca9-5d74b8c4bf7b]
x-ms-request-id: [4f880338-4d2a-4c91-9d0c-01f98a6c1638]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [316e4642-9a4b-11e6-9cc6-acbc32b2789b]
x-ms-client-request-id: [4ce903d4-d9d0-11e6-9e5e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355841396,"modificationTime":1477355841396,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339934539,"modificationTime":1484339934539,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:21 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ae77eb2e-f5df-47b1-b3ef-3e0f76af07c8]
x-ms-request-id: [261ddd9d-9703-48ba-8fb3-7bef34d3907c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [318f6980-9a4b-11e6-8059-acbc32b2789b]
x-ms-client-request-id: [4cfa55de-d9d0-11e6-ab23-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355841396,"modificationTime":1477355841396,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339934539,"modificationTime":1484339934539,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:21 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [df9288ac-37fb-4558-966e-d910e07b1901]
x-ms-request-id: [48acd114-bd84-4405-be4f-95f3fd9eaee1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,9 +138,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [31ab3548-9a4b-11e6-9e95-acbc32b2789b]
x-ms-client-request-id: [4d0bf56e-d9d0-11e6-9d16-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
response:
@ -149,13 +149,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:22 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [590f75d9-6759-4a81-ad52-ea1be44e59cb]
x-ms-request-id: [8130d50d-b126-4cfe-9821-f5a93bf0c1cf]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [94f4332e-9a49-11e6-bde5-acbc32b2789b]
x-ms-client-request-id: [2a67a1b0-d9d0-11e6-9fac-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:50 GMT']
Date: ['Fri, 13 Jan 2017 20:37:56 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [00cc7f17-567a-4974-9947-7f01eeb58378]
x-ms-request-id: [378d8f81-570f-4d80-ac6c-e58735aa0231]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,25 +34,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9585a19c-9a49-11e6-8065-acbc32b2789b]
x-ms-client-request-id: [2abc6576-d9d0-11e6-8607-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:50 GMT']
Date: ['Fri, 13 Jan 2017 20:37:56 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [865c96ae-9ae1-4621-a613-d58531cc5f0a]
x-ms-request-id: [1fdbbdf3-883f-42aa-a2ed-3419e2da174d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -61,24 +61,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [95e2c030-9a49-11e6-b312-acbc32b2789b]
x-ms-client-request-id: [2aecacc6-d9d0-11e6-b037-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355150022,"modificationTime":1477355150118,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":5,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355150971,"modificationTime":1477355151081,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339877304,"modificationTime":1484339877352,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":5,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339877574,"modificationTime":1484339877635,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:51 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [4a7fad91-b415-4d6b-a811-1e04529327c6]
x-ms-request-id: [315fd41f-b965-4b0d-9ea1-bb0c06a526d4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -88,23 +88,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['41']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [95fe3e40-9a49-11e6-a985-acbc32b2789b]
x-ms-client-request-id: [2afe4e38-d9d0-11e6-8271-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?OP=MSCONCAT&deleteSourceDirectory=false
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?deleteSourceDirectory=false&OP=MSCONCAT
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:25:51 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [f7dbd051-dc2a-4d60-acf0-27becdf0f5fc]
x-ms-request-id: [092f21c9-69e7-445d-8485-cff068fb6837]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [966fc1a6-9a49-11e6-9a67-acbc32b2789b]
x-ms-client-request-id: [2b2df8ee-d9d0-11e6-8d89-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1477355151877,"modificationTime":1477355151924,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1484339878025,"modificationTime":1484339878057,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:52 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [fdae276b-57f2-4ad7-bc06-69023f0cf9af]
x-ms-request-id: [9ef8b1a3-b210-4934-9289-748f839aa329]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [968cb786-9a49-11e6-81a7-acbc32b2789b]
x-ms-client-request-id: [2b3fa300-d9d0-11e6-8290-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?OP=OPEN&offset=0&read=true&length=11
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?read=true&OP=OPEN&length=11&offset=0
response:
body: {string: hello world}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:52 GMT']
Date: ['Fri, 13 Jan 2017 20:37:57 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [af741fac-f6f6-4d7a-9790-94b3eb2b63ad]
x-ms-request-id: [a07dfd73-6780-417a-aabc-542e4e20c3d4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -165,24 +165,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96ad82de-9a49-11e6-ac91-acbc32b2789b]
x-ms-client-request-id: [2b5791f0-d9d0-11e6-890a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1477355151877,"modificationTime":1477355151924,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1484339878025,"modificationTime":1484339878057,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:52 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [2bce13b6-e853-47e2-8c7b-f47b39907c9c]
x-ms-request-id: [f4d20ecc-cc6b-4ecc-abf8-7783cec51cd6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -192,24 +192,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96c9a4d4-9a49-11e6-9475-acbc32b2789b]
x-ms-client-request-id: [2b68dbc2-d9d0-11e6-8bb2-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/c?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:52 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [4767e98d-18b1-40f5-994d-6a348f479e93]
x-ms-request-id: [2e449d30-2b5b-43d7-82ee-a5993c328722]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,52 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
Content-Length: ['0']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9b8f069e-9a49-11e6-9032-acbc32b2789b]
x-ms-client-request-id: [34438152-d9d0-11e6-b4b8-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 13 Jan 2017 20:38:13 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [31cfffc3-f863-444d-bdcd-f895a858fb03]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [34870b00-d9d0-11e6-b3a3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339893865,"modificationTime":1484339893865,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:00 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b719c6e6-0325-4d7a-a878-016e05225e64]
x-ms-request-id: [0784311d-cf0e-45d4-bb1f-1fc71984bc09]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -31,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9baeb9ee-9a49-11e6-83c2-acbc32b2789b]
x-ms-client-request-id: [3499f54c-d9d0-11e6-8924-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339893865,"modificationTime":1484339893865,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:00 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [65e7f2e1-a573-426b-a343-88e1e9ab7489]
x-ms-request-id: [eba7c5a1-2780-4d2a-b0ee-807e0c91a320]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -57,24 +85,103 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9bc961cc-9a49-11e6-b303-acbc32b2789b]
x-ms-client-request-id: [34aca99a-d9d0-11e6-bcc0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355160259,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339893865,"modificationTime":1484339893865,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1344']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:01 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [cc5c7805-7901-4a9f-a523-c7ae2633e06c]
x-ms-request-id: [2886343f-3df0-400d-a294-54a24b8622e2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [34bee84c-d9d0-11e6-8d01-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339893865,"modificationTime":1484339893865,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:38: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: [384a5a5b-f4d4-47c7-b4f9-a20ce2e295d7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [34d158b4-d9d0-11e6-8fdf-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339893865,"modificationTime":1484339893865,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:38: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: [f362a265-3743-46fc-9c72-e71769b4fcc9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [34e3cdfa-d9d0-11e6-bbb8-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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, 13 Jan 2017 20:38: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: [acd57dd1-fdf3-4a7f-ae62-c29a378c8ef7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bb567f9a-9a49-11e6-887a-acbc32b2789b]
x-ms-client-request-id: [50cf47e2-d9d0-11e6-8aa8-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39:01 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1f422365-e7da-40c4-97c9-65acec69678d]
x-ms-request-id: [8ad433f4-eef4-4238-b8c0-dcc381c4788b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bbf92608-9a49-11e6-9b32-acbc32b2789b]
x-ms-client-request-id: [51308994-d9d0-11e6-8882-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355214428,"modificationTime":1477355214764,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339941772,"modificationTime":1484339941817,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [6ad572e3-fe15-47d8-98ec-9687ae7019aa]
x-ms-request-id: [ea176b58-a7c5-4027-867c-75dcbb0c0a8d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bc150c88-9a49-11e6-8299-acbc32b2789b]
x-ms-client-request-id: [514239ac-d9d0-11e6-9b89-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=5
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=5&offset=0
response:
body: {string: 123--}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39:01 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [9c01f5d1-fb05-4c04-a605-a2e5156a5ea2]
x-ms-request-id: [903fd040-9b0c-4da9-aa5d-a01e68719c3d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,9 +86,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bc36ae88-9a49-11e6-b507-acbc32b2789b]
x-ms-client-request-id: [517bfd00-d9d0-11e6-a634-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&append=true
response:
@ -96,13 +96,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [d9ef678c-904c-49c0-97e8-e662776e7f4c]
x-ms-request-id: [e292100c-b4aa-4e2e-a3f0-0d3dbca4a495]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,23 +112,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bc66e440-9a49-11e6-89a8-acbc32b2789b]
x-ms-client-request-id: [519bbfd0-d9d0-11e6-a744-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=10&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=10&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [47f6f229-e352-4fdb-9ae8-765c62e3e4d9]
x-ms-request-id: [b87d1cb0-63c8-46d4-bfe2-b6d5e6069915]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bc93cdf0-9a49-11e6-9d78-acbc32b2789b]
x-ms-client-request-id: [51c38692-d9d0-11e6-bee3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355214428,"modificationTime":1477355216201,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339941772,"modificationTime":1484339942598,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [b1c07ab4-8d98-44be-a878-818d2bd6670a]
x-ms-request-id: [270eb9e5-0666-4757-ac99-8d997650cb5c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bcaf0a90-9a49-11e6-9cd0-acbc32b2789b]
x-ms-client-request-id: [51d5589a-d9d0-11e6-b935-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=13
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=13&offset=0
response:
body: {string: 123--456--789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39:02 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [902688aa-05d2-468d-b647-d9a0128510f6]
x-ms-request-id: [8b50c9ea-0495-4699-88f4-87e2ec693206]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -189,24 +189,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bccdba80-9a49-11e6-bb34-acbc32b2789b]
x-ms-client-request-id: [51ed5d36-d9d0-11e6-951a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355214428,"modificationTime":1477355216201,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339941772,"modificationTime":1484339942598,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [49d2e48f-ffd1-4f09-aa7d-9f4f439b306b]
x-ms-request-id: [60f3a601-5921-433e-b362-abc0f5c8fb1c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -215,24 +215,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bceb82a4-9a49-11e6-980a-acbc32b2789b]
x-ms-client-request-id: [51fee59a-d9d0-11e6-8be2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355214428,"modificationTime":1477355216201,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339941772,"modificationTime":1484339942598,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [af5d5352-da01-42c2-9de3-68ad1b793b87]
x-ms-request-id: [1d8e1f04-5786-421a-a868-d7153da34505]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -241,24 +241,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bd082ddc-9a49-11e6-a007-acbc32b2789b]
x-ms-client-request-id: [52112890-d9d0-11e6-b177-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355214428,"modificationTime":1477355216201,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":13,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339941772,"modificationTime":1484339942598,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [58e3ad68-a357-40c0-8ebe-6e2dc2c82898]
x-ms-request-id: [87cdb82a-91a1-4ca0-b722-9b0abe1cbc32]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -268,24 +268,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bd2367f8-9a49-11e6-b3f5-acbc32b2789b]
x-ms-client-request-id: [5222aa24-d9d0-11e6-ad9d-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [932f80f8-0b68-409d-8bd2-1f3564272fe5]
x-ms-request-id: [33c2dad2-f4bc-4fb1-8444-f3a7725c36b1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -8,25 +8,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['4']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b9cdc3fa-9a49-11e6-9ac1-acbc32b2789b]
x-ms-client-request-id: [4f66b562-d9d0-11e6-989f-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:51 GMT']
Date: ['Fri, 13 Jan 2017 20:38:59 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0e3cb4ca-4962-4200-9252-22147718de5a]
x-ms-request-id: [b812e77f-2fd8-4583-85d0-78d06cc832fb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -35,24 +35,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ba079b88-9a49-11e6-9a73-acbc32b2789b]
x-ms-client-request-id: [4fc0a68c-d9d0-11e6-932b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355211851,"modificationTime":1477355211937,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339939403,"modificationTime":1484339939467,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:51 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [84284040-4ad0-41ee-a580-f0f9a8c5cde1]
x-ms-request-id: [965ea310-0a77-46f0-b0ce-7bc32a9d419d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -61,11 +61,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ba22cff8-9a49-11e6-bfed-acbc32b2789b]
x-ms-client-request-id: [4fd3d1b4-d9d0-11e6-b4b4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=4
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=4&offset=0
response:
body: {string: '123
@ -73,14 +73,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38:59 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0d4acae8-9535-4ca0-87b5-3dda09c22668]
x-ms-request-id: [559ed8d5-d607-4125-af6b-7f3602a5a75b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -92,9 +92,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['4']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ba42b85e-9a49-11e6-9ef9-acbc32b2789b]
x-ms-client-request-id: [4febe208-d9d0-11e6-8418-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&append=true
response:
@ -102,13 +102,13 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [d5cfa879-76aa-4349-ba22-d5526764c7c4]
x-ms-request-id: [b624695b-abfc-4027-aa87-5216cf5c06b2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -118,23 +118,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ba7324be-9a49-11e6-971f-acbc32b2789b]
x-ms-client-request-id: [501aa84c-d9d0-11e6-829e-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=8&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=8&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:53 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8226e825-49eb-45d4-91b6-fa75728bdcd6]
x-ms-request-id: [d9812401-8b06-448c-a56d-a185c0509a28]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -143,24 +143,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ba9f9af6-9a49-11e6-a472-acbc32b2789b]
x-ms-client-request-id: [5034365a-d9d0-11e6-a4fb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355211851,"modificationTime":1477355212921,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339939403,"modificationTime":1484339939983,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [ca2afb33-083c-4eda-ba72-5f7230bcffb4]
x-ms-request-id: [1f91334e-1cf5-4f19-b6bd-33a8a7e3fd01]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -169,11 +169,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [babb6c88-9a49-11e6-b968-acbc32b2789b]
x-ms-client-request-id: [5047a334-d9d0-11e6-bab2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=11
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=11&offset=0
response:
body: {string: '123
@ -183,14 +183,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39:00 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [472de163-235e-454e-8cba-26b2805ccaac]
x-ms-request-id: [5f981b78-94f8-44db-bd78-559608b6e95a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -199,24 +199,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [badb5e30-9a49-11e6-9ffa-acbc32b2789b]
x-ms-client-request-id: [505d92e4-d9d0-11e6-a1b0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355211851,"modificationTime":1477355212921,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339939403,"modificationTime":1484339939983,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [74638fd1-9e2f-4d87-97ea-0c041463f1a4]
x-ms-request-id: [b4de0602-e129-483e-ab59-d253942352e0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -225,24 +225,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bafc1e7e-9a49-11e6-8b0b-acbc32b2789b]
x-ms-client-request-id: [5070c18a-d9d0-11e6-a286-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355211851,"modificationTime":1477355212921,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339939403,"modificationTime":1484339939983,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [937d8329-1de9-4e1e-a8dd-e3d5225d8a3c]
x-ms-request-id: [3ecef3e0-285d-47a0-92a0-540af203d367]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -251,24 +251,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bb17839c-9a49-11e6-857b-acbc32b2789b]
x-ms-client-request-id: [5083d25c-d9d0-11e6-88e0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355211851,"modificationTime":1477355212921,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339939403,"modificationTime":1484339939983,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [6aefb697-47ac-4027-bd7d-75adb2867b89]
x-ms-request-id: [0c10be39-c164-4439-a21f-6f9077657a4b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -278,24 +278,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [bb331f1c-9a49-11e6-9a48-acbc32b2789b]
x-ms-client-request-id: [50970f18-d9d0-11e6-95aa-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [716eb0c8-4484-4e09-87d9-0ffea282b5f7]
x-ms-request-id: [7b501233-6449-49bf-a73f-47ed7e466c14]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [998fad62-9a49-11e6-9432-acbc32b2789b]
x-ms-client-request-id: [32003b38-d9d0-11e6-ba7f-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:57 GMT']
Date: ['Fri, 13 Jan 2017 20:38:10 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f300a7fa-1611-4981-8da0-502c49db3de3]
x-ms-request-id: [dcfe2579-ae21-4c1c-89a9-4f8d12f89945]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,25 +34,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [99ea5bc2-9a49-11e6-a128-acbc32b2789b]
x-ms-client-request-id: [325a7af4-d9d0-11e6-a7f6-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:57 GMT']
Date: ['Fri, 13 Jan 2017 20:38:10 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a3a76da5-6d61-4380-87a5-652e9eaf9531]
x-ms-request-id: [7b3eb846-9478-4e96-ba57-820137e65604]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -61,9 +61,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9a3b0c5c-9a49-11e6-9bdc-acbc32b2789b]
x-ms-client-request-id: [3282dbda-d9d0-11e6-b5c4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=GETCONTENTSUMMARY
response:
@ -72,13 +72,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['111']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:58 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [73594f58-f21c-42a1-b45e-b4fa71988db6]
x-ms-request-id: [b60d787e-9329-4706-9235-c89f17b17c4b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -87,24 +87,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9a608e78-9a49-11e6-8622-acbc32b2789b]
x-ms-client-request-id: [32964c22-d9d0-11e6-a55a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355157747,"modificationTime":1477355157824,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355158366,"modificationTime":1477355158518,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339890052,"modificationTime":1484339890141,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339890365,"modificationTime":1484339890416,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['545']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:58 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [a72ee322-7f9f-4236-960f-85572a829b01]
x-ms-request-id: [7d53c2fa-633e-4667-b3e0-cad0b0a62612]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9a7c3a1a-9a49-11e6-bc40-acbc32b2789b]
x-ms-client-request-id: [32a8c5e8-d9d0-11e6-8b67-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355157747,"modificationTime":1477355157824,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355158366,"modificationTime":1477355158518,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339890052,"modificationTime":1484339890141,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339890365,"modificationTime":1484339890416,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['545']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:58 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [08162afd-b2f5-420d-99fb-f96d41258f49]
x-ms-request-id: [972341a3-2ec4-41d1-a388-ecdd5dc4c447]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9a991fb6-9a49-11e6-863f-acbc32b2789b]
x-ms-client-request-id: [32bb66a4-d9d0-11e6-ba02-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355157747,"modificationTime":1477355157824,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355158366,"modificationTime":1477355158518,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339890052,"modificationTime":1484339890141,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339890365,"modificationTime":1484339890416,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['545']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:58 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [90391a85-28f1-4522-a134-ee00a9d6c203]
x-ms-request-id: [d94714e7-68a2-4ae2-9101-1d06638f0d7d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -166,24 +166,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ab447a4-9a49-11e6-8e7e-acbc32b2789b]
x-ms-client-request-id: [32cd8de6-d9d0-11e6-96a5-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:59 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [11db42da-8733-4d28-b21f-1569d4248325]
x-ms-request-id: [9e2493aa-7e04-49fa-8079-a866a3463772]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -192,24 +192,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ad4dc58-9a49-11e6-9f7d-acbc32b2789b]
x-ms-client-request-id: [32e7bcc8-d9d0-11e6-88ac-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355158366,"modificationTime":1477355158518,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339890365,"modificationTime":1484339890416,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:59 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [c41a7636-0843-4d0c-99ea-b7c4f7ee5ba5]
x-ms-request-id: [8a4de80c-6a57-474e-a6fe-d7a5a9d1d784]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -218,24 +218,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9af14f30-9a49-11e6-8106-acbc32b2789b]
x-ms-client-request-id: [32fa46c8-d9d0-11e6-8574-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355158366,"modificationTime":1477355158518,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339890365,"modificationTime":1484339890416,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:59 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [bd693648-9be2-4e82-9489-e2d6325d7e0c]
x-ms-request-id: [0a401049-2015-4a3d-acd4-4936de460c83]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -245,24 +245,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9b0cc6ca-9a49-11e6-bd60-acbc32b2789b]
x-ms-client-request-id: [330c9de6-d9d0-11e6-9a9b-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:59 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [6bc6f782-04da-4c95-bf1c-86cc194304c0]
x-ms-request-id: [32dfa15e-b03c-46cf-90e0-d7996cd40fcd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [af87212c-9a49-11e6-98a0-acbc32b2789b]
x-ms-client-request-id: [44c48af4-d9d0-11e6-ba57-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:41 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c9057793-23a8-46d3-946c-f7f7689f94a3]
x-ms-request-id: [1f3d3f5c-bfcc-40ed-a584-12e8bccee0bd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,25 +34,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['4']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aff5d40a-9a49-11e6-8794-acbc32b2789b]
x-ms-client-request-id: [4521a5c2-d9d0-11e6-998b-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:34 GMT']
Date: ['Fri, 13 Jan 2017 20:38:41 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d703b1c4-cf83-4a83-bf7d-729a602c76b7]
x-ms-request-id: [25ea67b9-905c-4203-8170-9265381692ac]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -61,24 +61,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b03b0d70-9a49-11e6-bc5e-acbc32b2789b]
x-ms-client-request-id: [454a09ba-d9d0-11e6-a231-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355194607,"modificationTime":1477355194909,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339921541,"modificationTime":1484339921605,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c62f3702-667e-49bb-81cb-444c2e55c702]
x-ms-request-id: [2c358262-d010-4bf5-a709-54c2bad01b99]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -87,24 +87,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b055f2b8-9a49-11e6-bb22-acbc32b2789b]
x-ms-client-request-id: [455c5948-d9d0-11e6-adba-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355194607,"modificationTime":1477355194909,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339921541,"modificationTime":1484339921605,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e73f335f-c537-4cde-acbb-e1e850e0ac9f]
x-ms-request-id: [804b3abc-d843-4c7d-b7e2-a13e05a250b4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b08217ba-9a49-11e6-ba72-acbc32b2789b]
x-ms-client-request-id: [45713612-d9d0-11e6-98ea-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355194607,"modificationTime":1477355194909,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339921541,"modificationTime":1484339921605,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2db9de7a-5050-4fa6-aca4-5cbf46d49da2]
x-ms-request-id: [8ad177a1-7da0-4756-aecb-6a89a1e21dff]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b09fe8e6-9a49-11e6-b1db-acbc32b2789b]
x-ms-client-request-id: [4583b0e8-d9d0-11e6-ad7a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355194607,"modificationTime":1477355194909,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339921541,"modificationTime":1484339921605,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [575d92d4-5984-45b9-a77e-0d45d0c80e75]
x-ms-request-id: [0b00d30b-2656-4002-8e95-c39afe713220]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -165,24 +165,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b0bc70ec-9a49-11e6-9930-acbc32b2789b]
x-ms-client-request-id: [459661dc-d9d0-11e6-a3e6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355194607,"modificationTime":1477355194909,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339921541,"modificationTime":1484339921605,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [fbd39da6-65aa-4e63-8979-9cb21640341d]
x-ms-request-id: [19581d3d-b721-4af1-b3cc-eda81fb5ffb5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -192,24 +192,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b0d7d4b8-9a49-11e6-b9fb-acbc32b2789b]
x-ms-client-request-id: [45aa703e-d9d0-11e6-aaa7-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [512aacce-b3b2-4d42-a09f-a1966aeb9d97]
x-ms-request-id: [4fd69c75-5697-4ab5-a4e8-ab120431c5d2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -218,24 +218,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b0f92836-9a49-11e6-8fe2-acbc32b2789b]
x-ms-client-request-id: [45c49574-d9d0-11e6-9de8-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c0434f0f-03ac-463f-8999-d7f6f024428b]
x-ms-request-id: [6eefab5b-a2fe-49d8-b86d-bf1cf6a1da64]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -244,24 +244,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b113decc-9a49-11e6-a0d2-acbc32b2789b]
x-ms-client-request-id: [45d6e9b0-d9d0-11e6-aac9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355195351,"modificationTime":1477355195477,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339921870,"modificationTime":1484339921922,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [9ed52be2-999d-4e9a-aa33-9f09f11cb6d8]
x-ms-request-id: [39d3aad2-aceb-47c3-a5e2-54e6b0acbbe7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -271,24 +271,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b1354f6c-9a49-11e6-bdfd-acbc32b2789b]
x-ms-client-request-id: [45e920d8-d9d0-11e6-a1d3-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4c5dcc33-2fcd-410e-9cf3-73036fb08925]
x-ms-request-id: [06fe140a-2fa0-4a76-97ce-e43352a22be8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [970d90ec-9a49-11e6-a049-acbc32b2789b]
x-ms-client-request-id: [2bd1424a-d9d0-11e6-af36-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:52 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [5170867e-fddc-40a4-bced-9153dadc4aaa]
x-ms-request-id: [467faaac-3936-471f-a947-e9df2758eed7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -31,25 +31,25 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [97283576-9a49-11e6-81e4-acbc32b2789b]
x-ms-client-request-id: [2c130a26-d9d0-11e6-a945-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/shfoshf?OP=LISTSTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"Folder
does not exist: /azure_test_dir/shfoshf [4c2498cc-0494-46f5-ac3c-feb2c0a14623][2016-10-24T17:25:53.6924403-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
does not exist: /azure_test_dir/shfoshf [9ee64260-d449-4e58-b8e8-17d02354a23b][2017-01-13T12:37:59.8267004-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['238']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:53 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [4c2498cc-0494-46f5-ac3c-feb2c0a14623]
x-ms-request-id: [9ee64260-d449-4e58-b8e8-17d02354a23b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 404, message: Not Found}
- request:
@ -59,9 +59,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [97428028-9a49-11e6-89c6-acbc32b2789b]
x-ms-client-request-id: [2c26006c-d9d0-11e6-8e94-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/shfoshf/x?OP=RENAME&destination=azure_test_dir%2Fshfoshxbf%2Fy
response:
@ -70,13 +70,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['17']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:53 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [f695a735-a9db-4369-9d5a-847c1a2a8b07]
x-ms-request-id: [ac956421-4dc8-4987-8f05-f8e34b763761]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,9 +85,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [975e7be8-9a49-11e6-bbb8-acbc32b2789b]
x-ms-client-request-id: [2c542862-d9d0-11e6-8f8c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -96,13 +96,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:53 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [0c45e7a0-2341-48cf-8609-83d3838450bf]
x-ms-request-id: [67e11f99-76a1-40c8-bba5-0d84e511e48e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fc7523a2-9a4a-11e6-862e-acbc32b2789b]
x-ms-client-request-id: [351b9c5e-d9d0-11e6-a87c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4276da0c-1610-46e0-af80-bd8cfab84685]
x-ms-request-id: [fe10a05f-415a-4091-ace8-d1dcf0ed04f4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -32,25 +32,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fc915914-9a4a-11e6-9686-acbc32b2789b]
x-ms-client-request-id: [355c4a00-d9d0-11e6-877f-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:35:53 GMT']
Date: ['Fri, 13 Jan 2017 20:38:14 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5072afbc-d5cd-48a8-b06f-bd761fe16655]
x-ms-request-id: [bee602b5-c925-4b40-a959-4af7a2f8b9a0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fcc53180-9a4a-11e6-ab92-acbc32b2789b]
x-ms-client-request-id: [3576468c-d9d0-11e6-8161-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355753472,"modificationTime":1477355753472,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339895415,"modificationTime":1484339895415,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:53 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [60f604ef-3463-4ef3-bce1-3305c27c8a5e]
x-ms-request-id: [b81861ca-64a8-42f3-8c4b-aa251645d20c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fce48af6-9a4a-11e6-a82c-acbc32b2789b]
x-ms-client-request-id: [358ada62-d9d0-11e6-9b63-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355753472,"modificationTime":1477355753472,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339895415,"modificationTime":1484339895415,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:53 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [45a0f5e1-850d-4613-a41e-91ae651ccacd]
x-ms-request-id: [f9886fa9-2d5e-4bf9-b625-42858e3bf077]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,24 +112,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd09c2be-9a4a-11e6-9b8b-acbc32b2789b]
x-ms-client-request-id: [35a39362-d9d0-11e6-b4fc-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:35:54 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [47716226-a11d-44ae-9fbe-e62994b6aa89]
x-ms-request-id: [3e1703ea-f6d2-4afd-94ab-73f6fb13db05]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,9 +138,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd2f121c-9a4a-11e6-8ada-acbc32b2789b]
x-ms-client-request-id: [35c08048-d9d0-11e6-89ee-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -149,13 +149,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:53 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [43c6a4ac-239a-4e0d-8878-617813cfc800]
x-ms-request-id: [bf37e547-5aa6-474b-a5de-327e91a6ea07]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,9 +164,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd4f0aa4-9a4a-11e6-b950-acbc32b2789b]
x-ms-client-request-id: [35d39376-d9d0-11e6-adb0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -175,13 +175,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:54 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [99b764f4-28cc-4159-ada2-ddee10133982]
x-ms-request-id: [e49bdced-af77-43cb-8adc-4bd4acc83afb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd6e8170-9a4a-11e6-ac6a-acbc32b2789b]
x-ms-client-request-id: [35e5e52e-d9d0-11e6-9e34-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355754177,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477355437112,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339895892,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:54 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4d3fd5f9-23d2-4e76-b554-76a3ae5aa1c5]
x-ms-request-id: [61122df6-1549-43c5-8017-1391c791970d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [288e7f5e-9a4b-11e6-9849-acbc32b2789b]
x-ms-client-request-id: [4bb84530-d9d0-11e6-869f-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
@ -17,14 +17,14 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38:52 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [72225ff7-6558-477d-936f-95a07b8e0a16]
x-ms-request-id: [febbfd1c-d2c9-4173-a6b5-450f9d4b1e5e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [28b4573a-9a4b-11e6-b810-acbc32b2789b]
x-ms-client-request-id: [4bf7ffda-d9d0-11e6-9e9e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355827201,"modificationTime":1477355827201,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339933195,"modificationTime":1484339933195,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [12dd7c75-c77b-44e5-9c54-c9e84ea3b688]
x-ms-request-id: [0984ff75-5b1c-4a8f-a161-136808c5e0ab]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,9 +60,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [28d4378a-9a4b-11e6-beb9-acbc32b2789b]
x-ms-client-request-id: [4c0c63be-d9d0-11e6-8843-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
@ -71,14 +71,14 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:37:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38:53 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5028ed57-5ac7-4bf3-a7e2-c04e75abaedf]
x-ms-request-id: [aa78dc3c-9158-4eb3-b1a8-755cdc94e073]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -87,24 +87,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [290efb7a-9a4b-11e6-93de-acbc32b2789b]
x-ms-client-request-id: [4c316c76-d9d0-11e6-b713-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355827787,"modificationTime":1477355827787,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339933573,"modificationTime":1484339933573,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [3e69de6a-f977-42bf-80b3-f18dbc103984]
x-ms-request-id: [eea49951-9929-4734-a770-07003a405269]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [292b254a-9a4b-11e6-9e31-acbc32b2789b]
x-ms-client-request-id: [4c437954-d9d0-11e6-9c97-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355827787,"modificationTime":1477355827787,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339933573,"modificationTime":1484339933573,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:08 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [63851fa6-1b7e-4f38-ac65-9a396b107558]
x-ms-request-id: [8a5d2c04-541a-42c2-9cf9-d8e89f18301d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [294a80d4-9a4b-11e6-855a-acbc32b2789b]
x-ms-client-request-id: [4c55395a-d9d0-11e6-9068-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355827787,"modificationTime":1477355827787,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339933573,"modificationTime":1484339933573,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [dacbf37c-7d3f-4f5e-a197-4a547127458b]
x-ms-request-id: [3d344139-d295-4533-8082-2e37d0047976]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -166,9 +166,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [296af924-9a4b-11e6-87f0-acbc32b2789b]
x-ms-client-request-id: [4c66d38c-d9d0-11e6-92b8-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
response:
@ -177,13 +177,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:37:08 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [9664e82c-e560-416f-8129-69d4d8472926]
x-ms-request-id: [4f2f8128-5b7b-490c-af0c-de5fd6c8bf1c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9d845f30-9a49-11e6-951e-acbc32b2789b]
x-ms-client-request-id: [37155942-d9d0-11e6-8b0c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:04 GMT']
Date: ['Fri, 13 Jan 2017 20:38:18 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [880d46ca-54e5-4b6a-b074-641e60c743e9]
x-ms-request-id: [b74f61a9-3885-49cd-a7f4-df45c6811c62]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9dd7649e-9a49-11e6-8848-acbc32b2789b]
x-ms-client-request-id: [37715162-d9d0-11e6-a7c9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:04 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [deb66269-3483-4f31-99a4-84d0361a3324]
x-ms-request-id: [5ea3b3a1-778d-4b11-911e-418968b767d3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9df3050c-9a49-11e6-8c8d-acbc32b2789b]
x-ms-client-request-id: [37849bca-d9d0-11e6-9457-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: 0123456789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:04 GMT']
Date: ['Fri, 13 Jan 2017 20:38:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8ce606dd-3b46-4398-90bf-a2ab5731bd89]
x-ms-request-id: [9c42fae1-008e-4666-a565-8713037658fc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9e11d158-9a49-11e6-9246-acbc32b2789b]
x-ms-client-request-id: [379b1076-d9d0-11e6-a545-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:04 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [967e1cba-bde0-4d94-84ef-d4c223315a08]
x-ms-request-id: [fb8e080a-cb26-48ad-a15b-067f1bfb1f9e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9e2d6bac-9a49-11e6-ab2e-acbc32b2789b]
x-ms-client-request-id: [37af4bd8-d9d0-11e6-a3a0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: 0123456789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:05 GMT']
Date: ['Fri, 13 Jan 2017 20:38:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [78f02f58-61e9-464c-81fc-099db0911543]
x-ms-request-id: [2982fdef-6e32-42ee-94f2-38fec6b214d2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9e51a538-9a49-11e6-8ad7-acbc32b2789b]
x-ms-client-request-id: [37c48328-d9d0-11e6-961a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:05 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [542a5baa-bf41-410a-8d96-7b064345fa92]
x-ms-request-id: [116d03a6-a081-406d-b0a1-94281b507781]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9e7f7594-9a49-11e6-a62d-acbc32b2789b]
x-ms-client-request-id: [37d7d2a2-d9d0-11e6-9ba4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=3&read=true&length=7
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=7&offset=3
response:
body: {string: '3456789'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:05 GMT']
Date: ['Fri, 13 Jan 2017 20:38:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4e5204aa-4f26-4b1e-9a48-cc271589452e]
x-ms-request-id: [1d511f4f-29e6-48f9-b563-ffd7d4d79643]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -189,24 +189,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9e9d5fc0-9a49-11e6-99ec-acbc32b2789b]
x-ms-client-request-id: [37ec2ae2-d9d0-11e6-9fa9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:05 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [342afa6f-8aed-4bc6-8194-e2b259d29e36]
x-ms-request-id: [94c1da31-5987-43cc-80e1-26c312c9eee3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -215,24 +215,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9eb892d4-9a49-11e6-b1ae-acbc32b2789b]
x-ms-client-request-id: [37ff32a8-d9d0-11e6-88c3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:05 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [cac18791-1461-45d7-bed8-490c4624467f]
x-ms-request-id: [b4cbf447-894a-4147-b803-881272d8238e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -241,24 +241,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ed3d000-9a49-11e6-84a3-acbc32b2789b]
x-ms-client-request-id: [3813b780-d9d0-11e6-aa90-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355164382,"modificationTime":1477355164551,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339898616,"modificationTime":1484339898677,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7533561c-2177-4345-8065-c8ed4f8daee9]
x-ms-request-id: [40e5c75c-4101-484f-8e8d-4644c91253bc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -268,24 +268,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ef10e4a-9a49-11e6-a0c3-acbc32b2789b]
x-ms-client-request-id: [3826e902-d9d0-11e6-92ee-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [93e0b159-8881-4c9f-8fd6-9f066699ec5d]
x-ms-request-id: [ec792eca-200a-4e7e-99a6-98c3a711aca7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ae65b592-9a49-11e6-9a02-acbc32b2789b]
x-ms-client-request-id: [43ca865e-d9d0-11e6-85b9-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:32 GMT']
Date: ['Fri, 13 Jan 2017 20:38:39 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [dc7b9d7e-3574-4347-af7a-59bd0224393b]
x-ms-request-id: [63d24334-c1f3-4cd9-883b-0d93c270021e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aeb63b70-9a49-11e6-bbbe-acbc32b2789b]
x-ms-client-request-id: [441f9100-d9d0-11e6-9fa1-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355192716,"modificationTime":1477355192856,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339919893,"modificationTime":1484339919954,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:33 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [1bbe2d62-ffbe-47f4-9b28-6f8bb3702759]
x-ms-request-id: [25de4f22-29aa-4226-987a-a7a9f4fac48c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aed3b080-9a49-11e6-8ab1-acbc32b2789b]
x-ms-client-request-id: [4432606c-d9d0-11e6-8e17-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: '1234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:32 GMT']
Date: ['Fri, 13 Jan 2017 20:38:40 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c6c999bb-4fc2-463f-9e77-28762b2cf846]
x-ms-request-id: [ea2d900e-0138-4c58-8853-af743effa72f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aef6109c-9a49-11e6-9eb7-acbc32b2789b]
x-ms-client-request-id: [444df480-d9d0-11e6-87af-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355192716,"modificationTime":1477355192856,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339919893,"modificationTime":1484339919954,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:33 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [0d19d8fd-6149-4236-b9aa-cab73c778001]
x-ms-request-id: [d3b0b69b-7f50-493c-b011-d8e8f6542cc1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [af106578-9a49-11e6-ad9b-acbc32b2789b]
x-ms-client-request-id: [4467320c-d9d0-11e6-adb4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355192716,"modificationTime":1477355192856,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339919893,"modificationTime":1484339919954,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:33 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [013d29b8-7426-4f39-a700-3384b8718535]
x-ms-request-id: [d0e78bd7-dbe8-4da9-aa31-7b89ce3dbe5c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [af2bb152-9a49-11e6-8e32-acbc32b2789b]
x-ms-client-request-id: [447a9cc2-d9d0-11e6-83dc-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355192716,"modificationTime":1477355192856,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339919893,"modificationTime":1484339919954,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:33 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ce3a8b49-0f91-480d-aaee-563dba9dd9cd]
x-ms-request-id: [ad6d78c9-e29d-4b53-b422-5999e9987525]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [af490838-9a49-11e6-9f7a-acbc32b2789b]
x-ms-client-request-id: [448d0148-d9d0-11e6-8c5e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355192716,"modificationTime":1477355192856,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339919893,"modificationTime":1484339919954,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:33 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7d58be83-f882-4297-92ec-469f7485de9f]
x-ms-request-id: [2a731242-7f2c-431d-8d95-6298415b2a96]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [af63af3a-9a49-11e6-9cbe-acbc32b2789b]
x-ms-client-request-id: [44a10976-d9d0-11e6-bd41-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:34 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [16ac48a9-ca11-4563-8c9a-ddb4ffc06643]
x-ms-request-id: [b85a7e2f-2b72-4a59-8a0f-826e39a3338a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,31 +1,31 @@
interactions:
- request:
body: !!binary |
H4sIAMWmDlgC/8tLzE3VSczNL80r4XLMyUxO1TE0MOByyk/SMTIwAAA73Rj6HQAAAA==
H4sIANs6eVgC/8tLzE3VSczNL80r4XLMyUxO1TE0MOByyk/SMTIwAAA73Rj6HQAAAA==
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['49']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b610fbda-9a49-11e6-9784-acbc32b2789b]
x-ms-client-request-id: [4acb46b4-d9d0-11e6-b18d-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:45 GMT']
Date: ['Fri, 13 Jan 2017 20:38:51 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2a134a60-b7c3-4c82-ae17-79e748beccac]
x-ms-request-id: [fc0749b2-6514-40fd-beea-c90737c933ad]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,24 +34,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b673f578-9a49-11e6-80ca-acbc32b2789b]
x-ms-client-request-id: [4b2f38b6-d9d0-11e6-b67b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355205662,"modificationTime":1477355205823,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339931727,"modificationTime":1484339931777,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:45 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [85e9991c-b605-4547-b7d0-b49f4e546c13]
x-ms-request-id: [6a4bde2a-8611-41c0-9a92-6daff64e6ea0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,26 +60,26 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b68eb9b4-9a49-11e6-9cf6-acbc32b2789b]
x-ms-client-request-id: [4b41af76-d9d0-11e6-a41a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=49
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=49&offset=0
response:
body:
string: !!binary |
H4sIAMWmDlgC/8tLzE3VSczNL80r4XLMyUxO1TE0MOByyk/SMTIwAAA73Rj6HQAAAA==
H4sIANs6eVgC/8tLzE3VSczNL80r4XLMyUxO1TE0MOByyk/SMTIwAAA73Rj6HQAAAA==
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:46 GMT']
Date: ['Fri, 13 Jan 2017 20:38:51 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [901d7538-e856-4a72-b3ef-3f9d6af8ba80]
x-ms-request-id: [1eb9200f-eb48-4af8-8793-42cbd5cc7738]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -88,24 +88,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b6acc38a-9a49-11e6-8944-acbc32b2789b]
x-ms-client-request-id: [4b59b712-d9d0-11e6-9b14-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355205662,"modificationTime":1477355205823,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339931727,"modificationTime":1484339931777,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:45 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [1fd9335e-c191-40bc-8edc-d57feaa54a45]
x-ms-request-id: [7eea100f-4188-42b0-aaf7-cf495ad5df3c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -114,24 +114,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b6c9a1f8-9a49-11e6-a749-acbc32b2789b]
x-ms-client-request-id: [4b6c22d8-d9d0-11e6-8ed6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355205662,"modificationTime":1477355205823,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339931727,"modificationTime":1484339931777,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:46 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [5b634745-0915-4d12-ada3-de64b723321b]
x-ms-request-id: [2b6f7b0d-2916-47b9-9eb9-721d05dcde89]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -140,24 +140,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b6e81a18-9a49-11e6-b779-acbc32b2789b]
x-ms-client-request-id: [4b7e5d38-d9d0-11e6-94dd-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355205662,"modificationTime":1477355205823,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":49,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339931727,"modificationTime":1484339931777,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:46 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [3f9cd664-5c5a-45e5-be48-febcd53ebc76]
x-ms-request-id: [ded419f3-b8bc-4b9d-93bb-72b775727552]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -167,24 +167,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b704120c-9a49-11e6-bd2a-acbc32b2789b]
x-ms-client-request-id: [4b94072c-d9d0-11e6-a645-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:46 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [2063b00f-79fc-4476-b98d-2f20591869fb]
x-ms-request-id: [cd4df6bf-1937-4679-ada9-82604fdc27ae]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [98893e88-9a49-11e6-b6bd-acbc32b2789b]
x-ms-client-request-id: [310cae1e-d9d0-11e6-8423-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:55 GMT']
Date: ['Fri, 13 Jan 2017 20:38:08 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [26ee1388-d53a-4661-8938-7fa75f574767]
x-ms-request-id: [ecc6d5aa-3880-4bd6-a7f2-c63fcf3dc8a0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [98c2e494-9a49-11e6-8613-acbc32b2789b]
x-ms-client-request-id: [3182541e-d9d0-11e6-bff0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355156022,"modificationTime":1477355156107,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339888459,"modificationTime":1484339888507,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:55 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [d3bf89e9-33cd-4725-861a-9fb7c8efbedf]
x-ms-request-id: [dd3b125f-b50b-482c-be1e-f09e6d196521]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [98e155b4-9a49-11e6-89f6-acbc32b2789b]
x-ms-client-request-id: [3194d29e-d9d0-11e6-b5df-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355156044,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339888481,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1344']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:56 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [e9b85884-e564-4f92-bbf3-ada7994cd0a8]
x-ms-request-id: [ee90b9f1-4d66-4531-8f09-387cc963705b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [98fec4c8-9a49-11e6-80ed-acbc32b2789b]
x-ms-client-request-id: [31a68982-d9d0-11e6-805a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355156022,"modificationTime":1477355156107,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339888459,"modificationTime":1484339888507,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:56 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [329acf5f-76c3-49d3-b202-77eb8dfea826]
x-ms-request-id: [56106b65-7d97-4373-95fe-cd6980130956]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [991aab18-9a49-11e6-ab62-acbc32b2789b]
x-ms-client-request-id: [31bab8dc-d9d0-11e6-b69c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355156022,"modificationTime":1477355156107,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339888459,"modificationTime":1484339888507,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:56 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [13bd9701-f561-45a7-95bc-14738325202d]
x-ms-request-id: [dc8c0627-5ae3-4b84-b27c-72b3b5efec7e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9937c142-9a49-11e6-a82f-acbc32b2789b]
x-ms-client-request-id: [31cd23de-d9d0-11e6-910a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355156022,"modificationTime":1477355156107,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339888459,"modificationTime":1484339888507,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:56 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ef681dab-b24c-4c6d-a742-b7c539e1d196]
x-ms-request-id: [35bcd127-8933-4960-bdc1-bb90ab6f704f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [995833c8-9a49-11e6-85cb-acbc32b2789b]
x-ms-client-request-id: [31e039e8-d9d0-11e6-9f20-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:56 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [1d5ac0b8-a95b-475a-a2f3-527336edda31]
x-ms-request-id: [4e200090-2244-4d06-ad9d-51561547f2c8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d0735a62-9a4a-11e6-abbd-acbc32b2789b]
x-ms-client-request-id: [2753b062-d9d0-11e6-8285-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [2a069bed-13b9-4b8d-a885-5a33c1d41f47]
x-ms-request-id: [0f2c892e-6d1a-44d3-958c-acbb4f91456d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -31,24 +31,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d091d8c0-9a4a-11e6-b139-acbc32b2789b]
x-ms-client-request-id: [278e9594-d9d0-11e6-8d11-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355664204,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477355437112,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339871611,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f96b81f0-3359-4d50-92e7-d1cc9bfa3b0a]
x-ms-request-id: [baf6862a-63a6-465e-8343-4b60cb2060bb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -58,25 +58,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d0bd6f62-9a4a-11e6-a1fc-acbc32b2789b]
x-ms-client-request-id: [27a11fba-d9d0-11e6-809e-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:34:38 GMT']
Date: ['Fri, 13 Jan 2017 20:37:51 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ab2db5ed-fa6d-44cc-b52d-90085a82f510]
x-ms-request-id: [fdae8dd5-d5e3-4518-ae2a-3799bc4fdb71]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -86,25 +86,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d0dece80-9a4a-11e6-9a34-acbc32b2789b]
x-ms-client-request-id: [27b8b2dc-d9d0-11e6-bfbb-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:34:39 GMT']
Date: ['Fri, 13 Jan 2017 20:37:51 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d19cf721-c900-4dd5-8109-94c9883b8a17]
x-ms-request-id: [a6c7251f-c3ac-4fe4-9f44-35602e84fbdb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -113,24 +113,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d1034106-9a4a-11e6-a260-acbc32b2789b]
x-ms-client-request-id: [27d094dc-d9d0-11e6-b560-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355679832,"modificationTime":1477355679832,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339872380,"modificationTime":1484339872380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:39 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f0c0b809-0770-4505-87c3-f4df4ed68f8d]
x-ms-request-id: [36e9737c-82d7-4a67-990b-30b796c34c85]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -139,24 +139,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d123e436-9a4a-11e6-88f8-acbc32b2789b]
x-ms-client-request-id: [27e296b0-d9d0-11e6-a70a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355679832,"modificationTime":1477355679832,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339872380,"modificationTime":1484339872380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [006649fb-43e6-4523-b64e-ca81ecb39864]
x-ms-request-id: [ed84e894-ce39-48bd-8b44-076203774ed4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -165,24 +165,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d1512cfe-9a4a-11e6-aacf-acbc32b2789b]
x-ms-client-request-id: [27f497c6-d9d0-11e6-a52b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355679832,"modificationTime":1477355679832,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339872380,"modificationTime":1484339872380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [2cfa05b4-8bbc-41c4-b52a-64ec4b3f18f9]
x-ms-request-id: [66241ca5-8dc9-4912-b625-3af84a4dd077]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -191,24 +191,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d17298d8-9a4a-11e6-b6d8-acbc32b2789b]
x-ms-client-request-id: [280623f0-d9d0-11e6-813b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355679832,"modificationTime":1477355679832,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339872380,"modificationTime":1484339872380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [8edd65cf-d4f9-4813-a35c-f13394add319]
x-ms-request-id: [4bf37024-d55a-4f1c-99b7-fe5a0e66677b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -217,24 +217,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d18db8a2-9a4a-11e6-943c-acbc32b2789b]
x-ms-client-request-id: [2834a0c0-d9d0-11e6-b89f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355679832,"modificationTime":1477355679832,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339872380,"modificationTime":1484339872380,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['543']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [46488a21-f963-4635-bd7e-982fa015636a]
x-ms-request-id: [726edf6d-09c0-461d-a2dd-9341d4f22d86]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -244,24 +244,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d1b08670-9a4a-11e6-a639-acbc32b2789b]
x-ms-client-request-id: [284691a6-d9d0-11e6-91ed-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:34:40 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [745c8218-3c09-4a00-a94f-b988e684bdc2]
x-ms-request-id: [6e06cc0d-1a44-4d59-ba49-ed10130ba9bf]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -270,24 +270,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d1d5412c-9a4a-11e6-a8f1-acbc32b2789b]
x-ms-client-request-id: [285f2b5e-d9d0-11e6-ace7-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [5a7347d1-131d-4172-97fc-d4b693c81707]
x-ms-request-id: [80032f34-7b6a-400b-bedd-a9d3cc23cfe9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -296,24 +296,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d1f4dd3e-9a4a-11e6-8adb-acbc32b2789b]
x-ms-client-request-id: [28715562-d9d0-11e6-97e4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355680068,"modificationTime":1477355680068,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339872531,"modificationTime":1484339872531,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [f658d61b-b8b7-4bb8-b5a1-4b1013e450e9]
x-ms-request-id: [454732dc-f70a-4fb6-addf-116fc29319a2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -323,24 +323,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d213ca14-9a4a-11e6-adf0-acbc32b2789b]
x-ms-client-request-id: [2883745a-d9d0-11e6-8926-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:34:41 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [c27c4ec6-80d5-4c3f-95f7-a88b9043a98c]
x-ms-request-id: [2d43e747-e214-44ed-be23-f55d5ccedd44]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f3197f88-9a4a-11e6-aae1-acbc32b2789b]
x-ms-client-request-id: [332f28a6-d9d0-11e6-b3fe-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
@ -17,14 +17,14 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:35:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38:12 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [775027c7-ead2-4254-bc3b-284e35ca3e81]
x-ms-request-id: [364a9f6a-c500-4417-8245-0a4eb0c6df98]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f33e862c-9a4a-11e6-b138-acbc32b2789b]
x-ms-client-request-id: [33759ec8-d9d0-11e6-a7e5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [2c768ced-87db-426f-8f1a-00d42a4f2241]
x-ms-request-id: [13f6c337-c1b2-46d5-ad42-3ff9905140f7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f35e5ae8-9a4a-11e6-b754-acbc32b2789b]
x-ms-client-request-id: [3388fd8c-d9d0-11e6-89f7-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [da80ae5b-2984-4935-ac8d-bfd07f12f3ca]
x-ms-request-id: [617891fd-c4b4-43e7-afca-f8162e358f80]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,24 +86,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f37dee6e-9a4a-11e6-aa2f-acbc32b2789b]
x-ms-client-request-id: [339c52c2-d9d0-11e6-9e17-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?destination=azure_test_dir%2Fb&OP=RENAME
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=RENAME&destination=azure_test_dir%2Fb
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: ['Tue, 25 Oct 2016 00:35:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [cdd7ebc6-1dc9-4afe-8513-fd65e3086379]
x-ms-request-id: [81893631-0d38-4264-b0ff-617187461ddd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,24 +112,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f39b6942-9a4a-11e6-8d24-acbc32b2789b]
x-ms-client-request-id: [33b4c802-d9d0-11e6-9daf-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b093cd09-1b0b-472d-b88d-0d62c9d4c020]
x-ms-request-id: [d19311e4-c19a-44f2-b3c7-eefb3f55933a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f3c69346-9a4a-11e6-b1e5-acbc32b2789b]
x-ms-client-request-id: [33c85298-d9d0-11e6-8e1c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4500ebbc-02f1-432b-ad7b-21de48a819a9]
x-ms-request-id: [9567afeb-71e8-43ef-9d5c-e3b8d7600cf5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f3e77110-9a4a-11e6-8bee-acbc32b2789b]
x-ms-client-request-id: [33dbc66e-d9d0-11e6-a902-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7a701a1b-8631-449f-93b6-a37090458e89]
x-ms-request-id: [a40c2d83-061f-433b-99f9-477c153245f0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f406ea34-9a4a-11e6-bec9-acbc32b2789b]
x-ms-client-request-id: [33eefc70-d9d0-11e6-9cc0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b66707af-c32a-43b3-b19b-bd843e8d485a]
x-ms-request-id: [df854126-e17a-4599-bbc4-673c3b7c9585]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -216,24 +216,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f423ba58-9a4a-11e6-90d0-acbc32b2789b]
x-ms-client-request-id: [340c7622-d9d0-11e6-8cf3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355737505,"modificationTime":1477355737505,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339892056,"modificationTime":1484339892056,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:38 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [293c2fbc-d9aa-4a95-b16c-10d9fad0685b]
x-ms-request-id: [496020a8-e449-434d-9c91-d1f0539c2463]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -243,9 +243,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [f4488e4c-9a4a-11e6-bb54-acbc32b2789b]
x-ms-client-request-id: [341f9ccc-d9d0-11e6-a8df-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/b?recursive=True&OP=DELETE
response:
@ -254,13 +254,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:35:39 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [9fed996a-d050-47f9-987d-6fce59aedc96]
x-ms-request-id: [2020f228-1e1e-4346-ae9d-4e103f477310]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ad6833f4-9a49-11e6-ab41-acbc32b2789b]
x-ms-client-request-id: [42e6ed9e-d9d0-11e6-9cca-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38:37 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0d6a1b55-2562-41c0-a889-1da28949fd06]
x-ms-request-id: [2d2028d7-35da-485b-b4f8-6ea56f6ccad2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [adacdcca-9a49-11e6-b79c-acbc32b2789b]
x-ms-client-request-id: [4347463a-d9d0-11e6-90db-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355191063,"modificationTime":1477355191173,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339918463,"modificationTime":1484339918547,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:30 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [ad491b30-4a1c-4784-a0fe-4c5506412792]
x-ms-request-id: [1fdf4a12-7d71-4cf4-90cc-688742046dec]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [adc8e3de-9a49-11e6-84e1-acbc32b2789b]
x-ms-client-request-id: [4359eec6-d9d0-11e6-9a96-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=1000
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=1000&offset=0
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38:37 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5f1a2823-7c85-406c-82a4-b89fc6437d1f]
x-ms-request-id: [8c3d6e5b-d012-42b0-8b21-c5cdc1dc7f43]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [adeb4ae6-9a49-11e6-9e79-acbc32b2789b]
x-ms-client-request-id: [436f2ee6-d9d0-11e6-b177-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355191063,"modificationTime":1477355191173,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339918463,"modificationTime":1484339918547,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7da3fb7c-8bac-4017-bb5f-0902fff7bd1e]
x-ms-request-id: [12cba38d-befe-48ed-baf0-fa50ed0a30f9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ae0d9650-9a49-11e6-9635-acbc32b2789b]
x-ms-client-request-id: [438165fa-d9d0-11e6-b6d3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355191063,"modificationTime":1477355191173,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339918463,"modificationTime":1484339918547,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [d70153b5-3e49-49fb-8595-f3ac154c6a47]
x-ms-request-id: [b155367d-dbc2-4650-ac13-1f43dfe45d55]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ae28323a-9a49-11e6-9bf7-acbc32b2789b]
x-ms-client-request-id: [4393db8a-d9d0-11e6-9d40-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355191063,"modificationTime":1477355191173,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":1000,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339918463,"modificationTime":1484339918547,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [6e6e60c6-9c53-4fe7-b93b-cc8b8e29e5aa]
x-ms-request-id: [f48e6a9a-840a-4446-b260-d3dadcf3ada7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ae4417ae-9a49-11e6-9a9b-acbc32b2789b]
x-ms-client-request-id: [43a610ba-d9d0-11e6-916a-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:31 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [867cfcd5-bda8-4315-bede-778fb2c8acb7]
x-ms-request-id: [ab425033-4d94-4abc-8936-b34ff1ccccf4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -10,25 +10,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['11']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a9a548ec-9a49-11e6-8065-acbc32b2789b]
x-ms-client-request-id: [3eee2b58-d9d0-11e6-bccd-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:24 GMT']
Date: ['Fri, 13 Jan 2017 20:38:31 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [65ddd77c-3dae-4150-9be5-2ce5b18f3a06]
x-ms-request-id: [fe11f59b-3911-4af9-b107-04ecf18b19d5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -37,24 +37,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a9e34d68-9a49-11e6-84ac-acbc32b2789b]
x-ms-client-request-id: [3f3e7d36-d9d0-11e6-beca-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355184736,"modificationTime":1477355184807,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339911726,"modificationTime":1484339911771,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:24 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [27351e8a-ee66-4974-a7c0-f78f1fc36409]
x-ms-request-id: [52b0949d-0d17-483d-b169-7ca05dadb56c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -63,11 +63,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aa005348-9a49-11e6-b573-acbc32b2789b]
x-ms-client-request-id: [3f50391c-d9d0-11e6-9453-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=11
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=11&offset=0
response:
body: {string: '123
@ -77,14 +77,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:25 GMT']
Date: ['Fri, 13 Jan 2017 20:38:31 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [03d094a8-8691-4998-90bd-de1b8b5dfcc5]
x-ms-request-id: [40de05f6-63d5-49c0-a953-ed341e80e463]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -93,24 +93,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aa1df6e8-9a49-11e6-8d3e-acbc32b2789b]
x-ms-client-request-id: [3f64b2c0-d9d0-11e6-b897-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355184736,"modificationTime":1477355184807,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339911726,"modificationTime":1484339911771,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:25 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [36703206-a26d-4487-afc5-6cb04d2634e5]
x-ms-request-id: [3639d6a4-5f2e-4bb7-9daf-5b21d4a1e0fa]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -119,24 +119,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aa390bc2-9a49-11e6-b594-acbc32b2789b]
x-ms-client-request-id: [3f766bc6-d9d0-11e6-9251-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355184736,"modificationTime":1477355184807,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339911726,"modificationTime":1484339911771,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:25 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4a1bc15c-81d8-43dd-b464-67e8cd9b19ee]
x-ms-request-id: [2f4dd0e5-1b61-4080-a9bd-c9317194640a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -145,24 +145,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aa5afa82-9a49-11e6-85c1-acbc32b2789b]
x-ms-client-request-id: [3f880526-d9d0-11e6-8e81-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355184736,"modificationTime":1477355184807,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":11,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339911726,"modificationTime":1484339911771,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:25 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [21a5caf7-0acc-4c36-a642-7ae88fdcd8bb]
x-ms-request-id: [12c280bc-cc81-4117-b56b-3428600c60bd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -172,24 +172,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aa76c950-9a49-11e6-84d9-acbc32b2789b]
x-ms-client-request-id: [3f99bbec-d9d0-11e6-84db-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:25 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [fcb9a2ad-4ead-4765-8a0d-49533c3d2195]
x-ms-request-id: [29fd6f3b-4e57-46a0-983d-bb4ab3c08524]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -8,25 +8,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['7']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ab5207c0-9a49-11e6-9349-acbc32b2789b]
x-ms-client-request-id: [41121b12-d9d0-11e6-a09e-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:27 GMT']
Date: ['Fri, 13 Jan 2017 20:38:34 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8d08c347-e9bd-4401-9e96-3e7095fed41f]
x-ms-request-id: [99402f0a-1c73-42f2-885b-921ef181ed90]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -35,24 +35,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ab944b8a-9a49-11e6-9885-acbc32b2789b]
x-ms-client-request-id: [416c111c-d9d0-11e6-8e11-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":7,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355187579,"modificationTime":1477355187689,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":7,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339915350,"modificationTime":1484339915399,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:27 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [48eba7ef-e598-44b9-b3ec-b525d975c52b]
x-ms-request-id: [a29107c4-858a-493a-9380-972ac6ea919c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -61,11 +61,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [abb055b4-9a49-11e6-a759-acbc32b2789b]
x-ms-client-request-id: [417ed888-d9d0-11e6-8671-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=7
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=7&offset=0
response:
body: {string: '123
@ -73,14 +73,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:28 GMT']
Date: ['Fri, 13 Jan 2017 20:38:35 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [11d9c6ed-e03d-4f7d-9dbb-e6ee10b00790]
x-ms-request-id: [ab0620f3-e8c7-4b25-980b-7bd86f7749b7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -89,24 +89,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [abd1003e-9a49-11e6-a0fe-acbc32b2789b]
x-ms-client-request-id: [41b51aec-d9d0-11e6-95cc-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":7,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355187579,"modificationTime":1477355187689,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":7,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339915350,"modificationTime":1484339915399,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:28 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [fd026f87-0c17-4f69-86b4-c93783a705f4]
x-ms-request-id: [5a52e5f5-1fa7-4dc6-8914-bfb6f223b83a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -115,11 +115,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [abf757a4-9a49-11e6-be9a-acbc32b2789b]
x-ms-client-request-id: [41c7d03e-d9d0-11e6-96f3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=7
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=7&offset=0
response:
body: {string: '123
@ -127,14 +127,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:27 GMT']
Date: ['Fri, 13 Jan 2017 20:38:35 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d40f7353-126c-4ca1-9022-a7aa695bc6c2]
x-ms-request-id: [13d02544-dc12-49c4-8f51-7a0514d08e25]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -144,25 +144,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ac1a7552-9a49-11e6-b110-acbc32b2789b]
x-ms-client-request-id: [41da229e-d9d0-11e6-9a3c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:28 GMT']
Date: ['Fri, 13 Jan 2017 20:38:35 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6e585b29-b7ad-4ce8-bfed-f702ebd1f282]
x-ms-request-id: [30d3c428-c036-4de6-a029-efef93987193]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -6170,25 +6170,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['8999']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ac461e78-9a49-11e6-b4cc-acbc32b2789b]
x-ms-client-request-id: [41fc361e-d9d0-11e6-8745-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:28 GMT']
Date: ['Fri, 13 Jan 2017 20:38:36 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [da2c3b30-4349-41f1-82b0-e664870ac4b9]
x-ms-request-id: [4dd7195d-76b9-4298-9c07-588bcbfa6df8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -6197,24 +6197,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [aca8e3dc-9a49-11e6-bb87-acbc32b2789b]
x-ms-client-request-id: [42469f1a-d9d0-11e6-972b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355189252,"modificationTime":1477355189372,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339916657,"modificationTime":1484339916719,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:29 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [878e84c3-3d54-4399-82d9-fdb0b4d2b7fd]
x-ms-request-id: [9f550b73-d1c3-43ee-812b-4c2f9f3c6c17]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -6223,11 +6223,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [acca4d2e-9a49-11e6-a9fb-acbc32b2789b]
x-ms-client-request-id: [425923ae-d9d0-11e6-851e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=8999
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=8999&offset=0
response:
body: {string: 'fe
@ -12231,14 +12231,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:29 GMT']
Date: ['Fri, 13 Jan 2017 20:38:36 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [90e2d5ca-cc3f-42eb-a160-cd407d9fdf3a]
x-ms-request-id: [c07a5ecb-22b9-4d3a-b793-a4eafc4a8aa5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -12247,24 +12247,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [acee8450-9a49-11e6-8f4a-acbc32b2789b]
x-ms-client-request-id: [42720aee-d9d0-11e6-93c5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355189252,"modificationTime":1477355189372,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339916657,"modificationTime":1484339916719,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:30 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b029f55b-ef01-4706-8d9b-c8e414143474]
x-ms-request-id: [ac99a098-9586-4adf-ba09-8d45cf92ab6d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -12273,24 +12273,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ad09dcf0-9a49-11e6-87be-acbc32b2789b]
x-ms-client-request-id: [4287c9e4-d9d0-11e6-984b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355189252,"modificationTime":1477355189372,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339916657,"modificationTime":1484339916719,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:29 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [93483975-4ee2-4a0a-9ea0-b5dd529924f3]
x-ms-request-id: [60a3beb5-b1c1-431f-bdb2-0d4ee34b9d4a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -12299,24 +12299,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ad277efe-9a49-11e6-9101-acbc32b2789b]
x-ms-client-request-id: [429a64e2-d9d0-11e6-bffb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355189252,"modificationTime":1477355189372,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":8999,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339916657,"modificationTime":1484339916719,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:30 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [05b79164-0deb-4a6f-927c-1fc9aa950064]
x-ms-request-id: [ac16ce3d-181a-4cb8-9dfe-9385b7f7138a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -12326,24 +12326,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ad43413e-9a49-11e6-9ec2-acbc32b2789b]
x-ms-client-request-id: [42c0fd06-d9d0-11e6-bff6-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:30 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [6d5600c4-4af5-4e86-9941-bb6a552abffd]
x-ms-request-id: [1a33be0c-61fd-4bca-a09c-203ed2eef8a7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [db3317b0-9a4a-11e6-882c-acbc32b2789b]
x-ms-client-request-id: [28aa3f66-d9d0-11e6-bcf6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:57 GMT']
Date: ['Fri, 13 Jan 2017 20:37: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: [aeb26eda-bf12-4af6-a509-7e596e8eb80b]
x-ms-request-id: [977a4880-c2ee-4495-b747-bcddf473f42e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -32,25 +32,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [db9ecf48-9a4a-11e6-996b-acbc32b2789b]
x-ms-client-request-id: [28e7c27e-d9d0-11e6-ab9a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&OP=CREATE&overwrite=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:34:57 GMT']
Date: ['Fri, 13 Jan 2017 20:37:54 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&OP=CREATE&overwrite=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0df0ca51-1e2b-4ca2-a8ad-88ecdd91fc2b]
x-ms-request-id: [eee5530c-2977-4f3b-9b5b-dd96831bc8a0]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dbc3e4fe-9a4a-11e6-b8af-acbc32b2789b]
x-ms-client-request-id: [28ff7a10-d9d0-11e6-bbcd-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355698115,"modificationTime":1477355698115,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339874510,"modificationTime":1484339874510,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:58 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [08e81692-c664-4e68-9330-8631a5a31a35]
x-ms-request-id: [a80035e0-fa79-46ef-a8aa-03f848d4fd80]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dbee8e48-9a4a-11e6-938d-acbc32b2789b]
x-ms-client-request-id: [29121522-d9d0-11e6-9f4d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355698115,"modificationTime":1477355698115,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339874510,"modificationTime":1484339874510,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:58 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [5ee0d8d5-7f9d-40f1-94d3-458fe436d8c4]
x-ms-request-id: [634b8ace-af5a-407f-ac61-4929d4f5a61e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,9 +112,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dc115612-9a4a-11e6-8c80-acbc32b2789b]
x-ms-client-request-id: [29240fae-d9d0-11e6-bcec-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=False&OP=DELETE
response:
@ -123,13 +123,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:58 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [935d0b59-9b5a-4ca4-b277-ff72cb6d6e14]
x-ms-request-id: [3285f9a8-6d62-4740-a9b4-e90bf30ec928]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,9 +138,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dc355bc0-9a4a-11e6-aa25-acbc32b2789b]
x-ms-client-request-id: [294146c2-d9d0-11e6-ab45-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -149,13 +149,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:59 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [cc6f671f-5ec1-411c-a176-531c73e03d30]
x-ms-request-id: [0f490ef5-6851-45e5-ac9c-bff05565ae59]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,9 +164,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dc547550-9a4a-11e6-86e9-acbc32b2789b]
x-ms-client-request-id: [2952ef12-d9d0-11e6-9d09-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -175,13 +175,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:58 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [225c7801-0ebf-4e21-a46b-cffe848de76e]
x-ms-request-id: [5db2e6b5-1a25-44a9-a2de-8f7b34343457]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dc7591a4-9a4a-11e6-82bf-acbc32b2789b]
x-ms-client-request-id: [296462d8-d9d0-11e6-826a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355698861,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477355437112,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339874923,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:34:59 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [cf82cfe4-e5d3-4c85-8e15-74ce4bcc8f7d]
x-ms-request-id: [be61aa67-44ff-40ae-96bd-c00d9ce5ba1d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [93cd3d86-9a49-11e6-a112-acbc32b2789b]
x-ms-client-request-id: [2981ed7e-d9d0-11e6-a7e5-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:25:47 GMT']
Date: ['Fri, 13 Jan 2017 20:37:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [99693fe5-9090-4631-bc0b-83357f1083cf]
x-ms-request-id: [ca8df4b8-aeca-4919-b00e-fce0f14df329]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [943d5600-9a49-11e6-bc71-acbc32b2789b]
x-ms-client-request-id: [29d8584a-d9d0-11e6-b68f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355148174,"modificationTime":1477355148279,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339875820,"modificationTime":1484339875874,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:48 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [5df522ee-4945-4c39-8fa7-75b40106d84d]
x-ms-request-id: [1dd452bb-01b7-4133-92c6-901af0716fdb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9458f84c-9a49-11e6-badc-acbc32b2789b]
x-ms-client-request-id: [29ebac28-d9d0-11e6-a774-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=3
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=3&offset=0
response:
body: {string: '123'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:25:48 GMT']
Date: ['Fri, 13 Jan 2017 20:37:55 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0a80287e-39e7-4abb-a918-208de0ccbb10]
x-ms-request-id: [92c4c593-8bf1-4812-bf43-cfa0ab0d386d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [947ce4d2-9a49-11e6-a506-acbc32b2789b]
x-ms-client-request-id: [2a0aff7a-d9d0-11e6-a9b3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355148174,"modificationTime":1477355148279,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339875820,"modificationTime":1484339875874,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:48 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [cacd9fd5-42a4-4e03-ba07-f4b5b4001b6f]
x-ms-request-id: [5f9e050b-8e13-4215-8deb-94e3517b7366]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9499afc6-9a49-11e6-a7b2-acbc32b2789b]
x-ms-client-request-id: [2a1e1830-d9d0-11e6-9ba8-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355148174,"modificationTime":1477355148279,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339875820,"modificationTime":1484339875874,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:48 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [ac6d0484-29a0-4a87-8807-bd7bda4a07cb]
x-ms-request-id: [a75d527a-d654-4fc3-8302-07581210fb9a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [94b73762-9a49-11e6-87c7-acbc32b2789b]
x-ms-client-request-id: [2a314600-d9d0-11e6-80ed-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355148174,"modificationTime":1477355148279,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":3,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339875820,"modificationTime":1484339875874,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:25:49 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [a92ee41c-8b56-4f32-a0d5-3ac3bd264311]
x-ms-request-id: [0166c1cf-261e-4e72-a0fd-0d2191c6227b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -164,24 +164,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [94d20c82-9a49-11e6-900f-acbc32b2789b]
x-ms-client-request-id: [2a445d34-d9d0-11e6-a72d-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:25:49 GMT']
Date: ['Fri, 13 Jan 2017 20: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: [c3695144-8036-43fa-bc8f-3f0e49b5f41b]
x-ms-request-id: [1cc44aa0-e6e0-4f59-a148-e86e3412da3f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['15']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b57b6cb4-9a49-11e6-9202-acbc32b2789b]
x-ms-client-request-id: [4a353c5c-d9d0-11e6-ba58-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:44 GMT']
Date: ['Fri, 13 Jan 2017 20:38:50 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [7e2765fc-a0b7-47e7-bfdd-d5eafe336e61]
x-ms-request-id: [d9a39a59-5174-47bc-95e6-c648ecaacab2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b5b769ee-9a49-11e6-a7e0-acbc32b2789b]
x-ms-client-request-id: [4a8a45ec-d9d0-11e6-b352-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355204596,"modificationTime":1477355204693,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339930662,"modificationTime":1484339930712,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:44 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [af4eb652-316b-41f6-96a9-f251ac084d59]
x-ms-request-id: [aa751dbb-9470-4d2c-861f-ac8989607a3a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b5d507cc-9a49-11e6-b661-acbc32b2789b]
x-ms-client-request-id: [4a9d2438-d9d0-11e6-a725-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355204596,"modificationTime":1477355204693,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339930662,"modificationTime":1484339930712,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:45 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7d4a5447-b840-4ec6-81a5-c0040c603d48]
x-ms-request-id: [0573a815-53fc-4ae1-8d20-f6b86a4099b1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -86,25 +86,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['4']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b5f03ce2-9a49-11e6-befb-acbc32b2789b]
x-ms-client-request-id: [4aafeca6-d9d0-11e6-becd-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=5&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&OP=APPEND&append=true
response:
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"FsAppendStream
failed with error 0x83090015 (Bad offset). [01c1be1a-0e03-4864-8f2d-094aec7a6e27][2016-10-24T17:26:45.3873372-07:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
failed with error 0x83090015 (Bad request. Invalid offset.). [fe82b3e6-b081-4bc1-bfe7-61cf5cfc9234][2017-01-13T12:38:51.2050950-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['260']
Content-Length: ['270']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:44 GMT']
Date: ['Fri, 13 Jan 2017 20:38:50 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x83090015']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [01c1be1a-0e03-4864-8f2d-094aec7a6e27]
x-ms-request-id: [fe82b3e6-b081-4bc1-bfe7-61cf5cfc9234]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 400, message: Bad Request}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9f14c222-9a49-11e6-9e13-acbc32b2789b]
x-ms-client-request-id: [3849385c-d9d0-11e6-96b5-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38:20 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ae10f212-3c19-4f24-965f-5bbee9379b49]
x-ms-request-id: [33e7f58f-f84c-4d33-9b8d-792148de8f4d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9f5ae3ec-9a49-11e6-854e-acbc32b2789b]
x-ms-client-request-id: [38a6379a-d9d0-11e6-996b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:06 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b6798f95-ca02-4e8b-a88c-10443ddcf51f]
x-ms-request-id: [adb1372b-2cf2-4e44-846e-fc2b078c9b42]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9f77af5e-9a49-11e6-8e0c-acbc32b2789b]
x-ms-client-request-id: [38b7d2da-d9d0-11e6-b372-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [14cc9270-fe7d-4a91-b68a-3e3fc55b673e]
x-ms-request-id: [41912a83-de76-469c-9fd9-5f6050efd3b9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9f93cc52-9a49-11e6-8a94-acbc32b2789b]
x-ms-client-request-id: [38c98608-d9d0-11e6-b850-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=7&read=true&length=3
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=3&offset=7
response:
body: {string: '789'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38:20 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f05f7981-0d98-4968-8191-1b1f97138620]
x-ms-request-id: [6b2ab955-8a44-4f3d-b022-732263477078]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9fb74180-9a49-11e6-ae13-acbc32b2789b]
x-ms-client-request-id: [38de4690-d9d0-11e6-9d58-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:07 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [033643b1-f716-48a3-b8a4-5e4916f05209]
x-ms-request-id: [59377a41-0685-4b30-8f2c-6ec5ff6a9ef2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9fd9c6e4-9a49-11e6-9339-acbc32b2789b]
x-ms-client-request-id: [38efae8a-d9d0-11e6-8b62-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=6
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=6&offset=0
response:
body: {string: '012345'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:08 GMT']
Date: ['Fri, 13 Jan 2017 20:38:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [eea181a6-fa33-4487-9c7e-9161880076eb]
x-ms-request-id: [206a6e62-3b9f-4021-9612-cae808ba9be7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9ff949a6-9a49-11e6-8617-acbc32b2789b]
x-ms-client-request-id: [3901df94-d9d0-11e6-bc2d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:08 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [faa116c2-5563-41ba-983a-312267000bd1]
x-ms-request-id: [4d438df0-b40d-4d51-95df-1161aa6a0516]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -189,24 +189,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a0af983e-9a49-11e6-9d2e-acbc32b2789b]
x-ms-client-request-id: [391c3f80-d9d0-11e6-b8c7-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:08 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7111a70f-d56c-4a0c-aece-d8743c33a47e]
x-ms-request-id: [cb30da27-f7c1-4133-9c23-8f3c42eab32d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -215,24 +215,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a0d1db90-9a49-11e6-bf47-acbc32b2789b]
x-ms-client-request-id: [392fb890-d9d0-11e6-83b9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: 0123456789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:26:09 GMT']
Date: ['Fri, 13 Jan 2017 20:38:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3c2fc81b-0004-4aff-bc98-50a4f4ea793c]
x-ms-request-id: [1fb0a9ee-9eb0-4e17-a8ed-0ed8fae0fe09]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -241,24 +241,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a0f13cda-9a49-11e6-9c37-acbc32b2789b]
x-ms-client-request-id: [3947f4de-d9d0-11e6-a309-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:09 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [7c605019-0531-4dfb-b92c-95a62814da6e]
x-ms-request-id: [3a5bbb42-af26-4d3f-a97f-a9e0bdbb5761]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -267,24 +267,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a10bd370-9a49-11e6-aa02-acbc32b2789b]
x-ms-client-request-id: [3959a812-d9d0-11e6-98fb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:10 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [c9e28c40-78cd-4e9e-9792-327c9872e789]
x-ms-request-id: [e7d80b03-61b2-4a71-a36f-4f157c24bdf1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -293,24 +293,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a12c8770-9a49-11e6-8341-acbc32b2789b]
x-ms-client-request-id: [396ba992-d9d0-11e6-a203-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355167018,"modificationTime":1477355167119,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339900584,"modificationTime":1484339900633,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['289']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:09 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8cd56004-980d-4c04-9114-facbbd2e514f]
x-ms-request-id: [427853ce-89c3-48f4-a791-bcf3ff2ae2a1]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -320,24 +320,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [a1472a12-9a49-11e6-a959-acbc32b2789b]
x-ms-client-request-id: [397d9754-d9d0-11e6-8c7a-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:09 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [616599a9-90c7-45de-afce-498d31fbca67]
x-ms-request-id: [da18c39f-ccb6-4f2d-a9d7-829de8d26bc7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [164656de-9a4b-11e6-938a-acbc32b2789b]
x-ms-client-request-id: [3fbabab4-d9d0-11e6-bb71-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:36:35 GMT']
Date: ['Fri, 13 Jan 2017 20:38:32 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4d6725bd-4e26-4154-aa01-ea3c96b11383]
x-ms-request-id: [f2111e60-97aa-410c-94b4-47d5f070c691]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [1670c718-9a4b-11e6-a6e0-acbc32b2789b]
x-ms-client-request-id: [3ffbd506-d9d0-11e6-ac1f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355796536,"modificationTime":1477355796536,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339913075,"modificationTime":1484339913075,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [e794c0b0-3b37-4bc9-b214-c32e173ecb92]
x-ms-request-id: [1e8d6656-92c0-441a-a6f8-a7c298dfa357]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [16906f76-9a4b-11e6-a01c-acbc32b2789b]
x-ms-client-request-id: [400d7aac-d9d0-11e6-91a2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355796536,"modificationTime":1477355796536,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339913075,"modificationTime":1484339913075,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [0d93e349-1259-4ee2-b981-371df57fef2c]
x-ms-request-id: [b0b2f628-738a-4f5b-9200-9c238e74d014]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [16abd278-9a4b-11e6-b578-acbc32b2789b]
x-ms-client-request-id: [401f2964-d9d0-11e6-b173-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355796536,"modificationTime":1477355796536,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339913075,"modificationTime":1484339913075,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:36 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8b67b021-7e0c-4e7f-8435-9fe74b569580]
x-ms-request-id: [e75d2ea7-8449-43c9-996e-cddbe32c8489]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [16cf95fe-9a4b-11e6-885e-acbc32b2789b]
x-ms-client-request-id: [4030dde2-d9d0-11e6-a41c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355796536,"modificationTime":1477355796536,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339913075,"modificationTime":1484339913075,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [4a134a82-25d5-4d08-bbde-484aa6deac99]
x-ms-request-id: [41b622e1-5358-4b64-af4e-705a10d587c2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [16ffa29c-9a4b-11e6-94ac-acbc32b2789b]
x-ms-client-request-id: [40431ecc-d9d0-11e6-a125-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:36:37 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [0cb5934d-5958-4e93-8f68-a50d0dd797bc]
x-ms-request-id: [117286e9-02d2-4d85-a353-c205903cdc4b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['5']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b42c3322-9a49-11e6-96ab-acbc32b2789b]
x-ms-client-request-id: [49139134-d9d0-11e6-b8c4-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:42 GMT']
Date: ['Fri, 13 Jan 2017 20:38:47 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3ab8701e-53c0-47ae-ab17-261b8d757749]
x-ms-request-id: [b6866479-0030-42ac-872b-3f0896eb450e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,23 +34,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b466fdc0-9a49-11e6-819c-acbc32b2789b]
x-ms-client-request-id: [496a5af0-d9d0-11e6-8f87-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=5&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:42 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [e2aa1b35-f6f8-4aa5-b34b-defa23a730fd]
x-ms-request-id: [36099cc6-0733-4ea9-aabe-85ec18d754e7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -60,23 +60,23 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['3']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b4991d1e-9a49-11e6-bd26-acbc32b2789b]
x-ms-client-request-id: [498e2766-d9d0-11e6-bfa1-645106422854]
method: POST
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&offset=6&append=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=6&OP=APPEND&append=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
Date: ['Tue, 25 Oct 2016 00:26:43 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [e0bb01cd-6624-4169-9fbd-9dc11792bb1c]
x-ms-request-id: [3876b32a-dc95-4e9a-a887-68b83d5d910f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b4e5ab00-9a49-11e6-8737-acbc32b2789b]
x-ms-client-request-id: [49a4e850-d9d0-11e6-8f7e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355202397,"modificationTime":1477355203121,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339928791,"modificationTime":1484339929063,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:43 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [8d5c13d7-93bb-4dfd-bfee-43731267fe49]
x-ms-request-id: [314a91ef-f71d-466a-aacc-3cd899888a98]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b500e4d2-9a49-11e6-869a-acbc32b2789b]
x-ms-client-request-id: [49b70f30-d9d0-11e6-b42d-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355202397,"modificationTime":1477355203121,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339928791,"modificationTime":1484339929063,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:43 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [88a26a7a-800a-48ff-b212-686a767938c9]
x-ms-request-id: [53e4c1e7-1468-4ccc-9ddb-e250a4b84faa]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -137,24 +137,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b51bc806-9a49-11e6-801e-acbc32b2789b]
x-ms-client-request-id: [49c9c7be-d9d0-11e6-a97f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355202397,"modificationTime":1477355203121,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339928791,"modificationTime":1484339929063,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:42 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [9e71dd87-a0c2-41bc-813d-6f4da7178752]
x-ms-request-id: [270086cd-a68a-43cf-b86b-4468710508df]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -163,24 +163,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b5375b6e-9a49-11e6-bef2-acbc32b2789b]
x-ms-client-request-id: [49eeaf62-d9d0-11e6-9fa9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355202397,"modificationTime":1477355203121,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":9,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339928791,"modificationTime":1484339929063,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:44 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [c29f7ddc-ca74-4ab6-bea0-27fa2f4c4803]
x-ms-request-id: [5d761ff8-cf72-4587-baa5-898e68874f0c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -190,24 +190,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b553d3b6-9a49-11e6-87f8-acbc32b2789b]
x-ms-client-request-id: [4a01128c-d9d0-11e6-81d4-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:43 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [116c4416-cc0d-4494-858c-53c2c8c5f767]
x-ms-request-id: [521464f3-d13f-44d6-9518-afcfe609d62c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b37bd1ee-9a49-11e6-bade-acbc32b2789b]
x-ms-client-request-id: [4865a224-d9d0-11e6-90fd-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38:47 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [86e77888-35d5-40b3-b94f-ffc004cca016]
x-ms-request-id: [b92798e1-95e5-4ce2-9739-edbf2ce89be7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b39c994a-9a49-11e6-b340-acbc32b2789b]
x-ms-client-request-id: [48a8253a-d9d0-11e6-89ce-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355201237,"modificationTime":1477355201237,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339927622,"modificationTime":1484339927622,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:40 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [1611135e-5d0d-48d1-b62b-70f7c228ee55]
x-ms-request-id: [96f35180-559d-4e48-a755-0d58d31de81b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b3b856d0-9a49-11e6-b6f8-acbc32b2789b]
x-ms-client-request-id: [48babda4-d9d0-11e6-8f7e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355201237,"modificationTime":1477355201237,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339927622,"modificationTime":1484339927622,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:41 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [a54c7c24-678f-4135-aa2f-397bc2c5aac1]
x-ms-request-id: [2e338697-f135-4873-b150-f219b32c0dbf]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b3d3ac6e-9a49-11e6-8d97-acbc32b2789b]
x-ms-client-request-id: [48cd93a2-d9d0-11e6-9b26-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355201237,"modificationTime":1477355201237,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339927622,"modificationTime":1484339927622,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:41 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [34fc7f8f-ed94-4395-99f4-c1c447f461f2]
x-ms-request-id: [64ab001b-442c-42d1-af06-cd6dabc0a557]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b3ef4cc8-9a49-11e6-937e-acbc32b2789b]
x-ms-client-request-id: [48dfe2c2-d9d0-11e6-9cf4-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355201237,"modificationTime":1477355201237,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339927622,"modificationTime":1484339927622,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:26:41 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [b0ca0d04-05ad-4816-aa62-a227f80c939f]
x-ms-request-id: [bfec2fb6-fb3a-4421-9e3f-568c85974ab6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [b40b2f86-9a49-11e6-a97f-acbc32b2789b]
x-ms-client-request-id: [48f2211a-d9d0-11e6-acbd-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:26:41 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [d53a84cf-0133-4699-804a-9f640a913d20]
x-ms-request-id: [c9c30d6f-e3ac-411b-8238-d7d10e39230a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -6,25 +6,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [1fe2d908-9a4b-11e6-966f-acbc32b2789b]
x-ms-client-request-id: [4064119e-d9d0-11e6-8788-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:36:51 GMT']
Date: ['Fri, 13 Jan 2017 20:38:33 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5d726b77-5241-485e-b05e-81f9b2f7129b]
x-ms-request-id: [9e428291-aff2-42e4-9b57-52ace53d87a4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -33,24 +33,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [2005cc4a-9a4b-11e6-b740-acbc32b2789b]
x-ms-client-request-id: [40a74758-d9d0-11e6-9465-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355812632,"modificationTime":1477355812632,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339914211,"modificationTime":1484339914211,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [71e08239-9c6c-4e7c-a6bb-7d7864d8aa1b]
x-ms-request-id: [91f3b188-307b-47e5-a12a-b3bef5468e0f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -59,24 +59,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [2025457a-9a4b-11e6-b31c-acbc32b2789b]
x-ms-client-request-id: [40b9f17e-d9d0-11e6-8abb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355812632,"modificationTime":1477355812632,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339914211,"modificationTime":1484339914211,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [9655dc08-c406-489e-93c8-d6c7e1fbdb7a]
x-ms-request-id: [61a2c305-2e7b-45dd-8ca4-bddb7a8fac38]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [20420a28-9a4b-11e6-9d6c-acbc32b2789b]
x-ms-client-request-id: [40cc3f9a-d9d0-11e6-a8eb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355812632,"modificationTime":1477355812632,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339914211,"modificationTime":1484339914211,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [1eabc38d-bd24-4347-9a6f-9be2566475f2]
x-ms-request-id: [4742b79e-eeb7-4b13-8b9c-7f4aa8fb991f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -111,24 +111,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [2061e1c6-9a4b-11e6-8f4e-acbc32b2789b]
x-ms-client-request-id: [40df031c-d9d0-11e6-b46e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355812632,"modificationTime":1477355812632,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339914211,"modificationTime":1484339914211,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['288']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:36:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [f0386f38-23df-4789-93b5-74c4c8f4e4d5]
x-ms-request-id: [b6c4aa60-b3ac-4cae-9149-3bece0aa897e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -138,24 +138,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [2083a50c-9a4b-11e6-bbdc-acbc32b2789b]
x-ms-client-request-id: [40f16a2c-d9d0-11e6-aeee-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:36:52 GMT']
Date: ['Fri, 13 Jan 2017 20:38: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: [bde5bb8c-a94d-4fe4-93f1-686414df8e2f]
x-ms-request-id: [577796ab-6330-492a-8aba-8fab96121c9e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -1,40 +1,40 @@
interactions:
- request:
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJ-y-9remgv2cyzuNQydYkjKFU5PNKIBMHAvwZCxzqhQmLQJMzrNdQx6zOHkASogQGLA3LnqIdLRc86rzbI3lA34qAVz07An_TBUei085wD0Cdj3ipHLc62INIu0vMHHJUmpbQ7iQ7fWt8A7iVupkyfZivPAQOa28YFYEosTEa8C1jrflSuB9owpDeSZ6zIbieuzNBj5SetdlestusesBEBISXouy4gvrnri2h2uxNxJQYxgt0801PmKer-mnbZTaizSdsaVtRG-EYKcnNhVd62X2ATQ-WHP5uZoeJcIQ4xvhwxt0FI2iCdt8yYVyhgexBvjpho26TKa8JNnOhUJyVXUZIix_DRmiS-5QEHRnJhs5JaOpVImDmJThraeYzciGwTSRlf1_Ojz6PkMVSoVGGpBxTr06l8QkcyRPRdqZoLnb9rxdzz09365wGA_Cysmt36ZB1ALqxg7baH59E0-dWwY8bciGTDtvSaiJAqhsUUZQz4vL2_7lwZ_q-UgBAvO_N93pFa_9FRZQbUFe-JvBj7psyo6CtmI0Kbjnsy0TtEB_z7OsLcFUcjvoL9RmPc2-roO5KGpBbOMkSK6sNga2UriEXyji9ruMq3IYAQg0JHvSz6aLYUx-ys7ydKVf5R0Mioexs9de-aTsFsc3WibiK6QV45qx_r-GqEfzx7xrLkyQgAA&grant_type=refresh_token&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_id=1950a258-227b-4e31-a9cf-717495945fc2
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJhDE0I2xsegEzbQTHgerezC_Mcu9IBeiCYH7t7fc1OT6BeQAmZ_JAlgnzR6WXst_01L2II5QC4NdcOY-ns7kGiMI3qfILq1UaHY_jahiY9rR3re5jsdUJxffXXx2n2b8-X3NK_9z49z-jbmw0cpBB8y9m8dYVZPNeHweIIe-2P2WkgRwYWhCm2vjd7CkUGKnupRnBY8WRJIdZVmPKHXhTlis68ZhIU55GWEKEa8Ok6NvSiqOZ4bALAc8hW_4TOtHBCa9yVJbr4e0aMVpQNWjQS9ZVeBFqlHKR_9AraglheNb8zc_NPITK-kzJITjuOMeUtTTj08el7hE1GwGX7bo2odnp9vf2TfYHGeQ2iez9YA2qljGjkggkSO8I4iTpqx1lBeluUQgpdKPBmWHRGI4MyyZi_VsS6lJLkth4UTXQnKD9dbxS9KATpsueAljvtj8VmjE1ob-UBhkbxhbM3wezbmkPT1qqwI35zIXLbO8PAE7Ij-PIRZtySvpGHQEBNgnxO6dynyCMSzB6nVY5fS_glTNIiFVVsxFvYOy43AUVnY3gtQMZ7s5PxdMNt00GHaOXv2__wuKKNnQtXicsD-MEESw95jU9y5MaRPeYeFyp5PhNXahyrF1-cQp69cSjZUXSIAA&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token
headers:
Accept: ['*/*']
Accept-Charset: [utf-8]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['858']
Content-Length: ['815']
User-Agent: [python-requests/2.11.1]
client-request-id: [6d290fb6-5562-4841-ab4d-d269397c5274]
client-request-id: [96ca039e-4551-494a-8877-bdc6bbce43a2]
content-type: [application/x-www-form-urlencoded]
return-client-request-id: ['true']
x-client-CPU: [x64]
x-client-OS: [darwin]
x-client-OS: [win32]
x-client-SKU: [Python]
x-client-Ver: [0.4.0]
x-client-Ver: [0.4.4]
method: POST
uri: https://login.microsoftonline.com/faketenant/oauth2/token?api-version=1.0
response:
body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3600","ext_expires_in":"10800","expires_on":"1477358822","not_before":"1477354922","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ikk2b0J3NFZ6QkhPcWxlR3JWMkFKZEE1RW1YYyIsImtpZCI6Ikk2b0J3NFZ6QkhPcWxlR3JWMkFKZEE1RW1YYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC8xODUyY2UwZi1kOGY0LTQ2YTgtOGFmNS0zYjZjYTM0ODU5NDEvIiwiaWF0IjoxNDc3MzU0OTIyLCJuYmYiOjE0NzczNTQ5MjIsImV4cCI6MTQ3NzM1ODgyMiwiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIxOTUwYTI1OC0yMjdiLTRlMzEtYTljZi03MTc0OTU5NDVmYzIiLCJhcHBpZGFjciI6IjAiLCJlX2V4cCI6MTA4MDAsImZhbWlseV9uYW1lIjoiVXNlcjEiLCJnaXZlbl9uYW1lIjoiQ29udGludXVtIiwiaXBhZGRyIjoiMTA4LjIxNC4xMjYuODkiLCJuYW1lIjoiQ29udGludXVtIFRlc3QgVXNlciBBY2NvdW50IDAxIiwib2lkIjoiNDliMmY5ZWMtODE4YS00OWNhLTk0MjQtMjQ5ZTFmMTlmN2Q3IiwicHVpZCI6IjEwMDM3RkZFOTk0NDhDMUEiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJyQ3ctM3lDVk5tYm93ekcyVmdrUm5vUEUyOTZUZGcwclREVE9UNnZxRjB3IiwidGlkIjoiMTg1MmNlMGYtZDhmNC00NmE4LThhZjUtM2I2Y2EzNDg1OTQxIiwidW5pcXVlX25hbWUiOiJjb250aW51dW1hZGx1c2VyMDFAY29udGludXVtYWRsLm9ubWljcm9zb2Z0LmNvbSIsInVwbiI6ImNvbnRpbnV1bWFkbHVzZXIwMUBjb250aW51dW1hZGwub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIn0.HfTXqVmDqWeGfw28iaMkbL0uTrn_duxYi60J-kTzq9ro_3-fHA-XHlzSSl8lRXtirKFFX-If1BHDt3_TO2PANRY0tbGwDG_yKxviRR5_qzrfXpJnBNzJxIlLbunHLwEArObI4DQBn_zg-NNJsHgCXAOyFpxlHe4gvPG0f_RJQHPCxSckv5lmr3RDpSv2y0d8rxKFzRyx1Nyp50hJhEyl4ThoUwHYmHWlebT50hs7X32DiRiGPFE3fnxg0nWe7oDpyoYtaF3X4MOeBOe_W8MrAbinjP0cLsPCz08jfmmg7DXEhgN69i0mjC8SQ2faDA6xy24DUjZdBoPBy1-kJMhxwg","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJYSiem4twyiRmVbt1LE5tJ8hjoGF4s0Ym2B-rA-tcCivFqYFWUDa1pQWQuKvCjOIigWNKR9PleQOgnp3fklyixQXYxiTd3ARo-6sh7Uv83RiB6RZ5YTYMzUwVglhbG-wzaCKbn5X0VzSxDr5IbPQoWpbwTKYK7TZWxiyn8l9IoI3XW9UvC5_n4HiK8pcGZNm1qwsfvcXhI23y-Okexqjd1wfuGYaKiMaDYzPjIxKem2zkbaOv-mroyQnWPCqztuNAYA1WWAGl0hYIMXD9vFjSVcqURQWcQiTsmkW7RzELgxWsEOzmecmWoYdusv7KFVhWTkrKk4_ZtvLebNh8nE5fI-oohpVxyZ9X5mr3LazvZBRX96f3Vy3KOF7NkaoKRxpLYO-rCBpycSCWCx7vr2jCwg1LWN114z2aWsHc7QW3bPfRZ0CpeH19x1djpvryLEC1bZag_M-j3699T3J4_x3RqpudT0sGG89WFPdZYO78ZjWjBT_ZmWhjFwhWRmgLBYyfc1eNnI_r5IG0emO43d2iaXXMTCAWE-trgGTuQl8YBlcGyVHOqef5cV6eLsIQL3o1j44dtAfeIxOGw1jhRmf3rFFTloOzWNeo3biNEHZllejLXDWtflbfXm6Q--NvKqmbN3kbNo-4Xgd5ZABzdszpWy4YU0iNjs_xeKZsqeY5TnsgAA"}'}
body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3600","ext_expires_in":"10800","expires_on":"1484343555","not_before":"1484339655","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSIsImtpZCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg0MzM5NjU1LCJuYmYiOjE0ODQzMzk2NTUsImV4cCI6MTQ4NDM0MzU1NSwiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJlX2V4cCI6MTA4MDAsImZhbWlseV9uYW1lIjoiVGVzdDAyIiwiZ2l2ZW5fbmFtZSI6IkFETCIsImlwYWRkciI6IjE2Ny4yMjAuMS4xMzUiLCJuYW1lIjoiQURMIFRlc3QwMiIsIm9pZCI6IjlhMjM4NjBlLTAzYjAtNGJhZC1hOGI3LWUxZDA4MWQ1OTJiZCIsInBsYXRmIjoiMTQiLCJwdWlkIjoiMTAwM0JGRkQ5RDkyNEEwNSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IldYcVY0aUpoTnNSeU5PZmFQMDZBSHFuRkJSZVYwUlVsYk10NW5GSlFmOEkiLCJ0aWQiOiI2ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIiLCJ1bmlxdWVfbmFtZSI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ1cG4iOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIn0.Shf2P8Xc4qXRvfpYumFC0WdWTarDNkwldepjAe8deKljQr5WnNrB45N3RP8xXuyOGbthPcs9zjmjuqiz57efBotW-3bFogrcVLiudrJfS35LeyVv6XZGh7ybyqvxltgaxTqBYUf0ltICn4UTkBcgZ3W_Wpy-Ss323RRkqrb3YK2XSbXKqXNVVbfsrTO7dJ7-DUZpBaiC_aqHbbxxTkFroQpHPP_4Bqd1xvX3XFdYu5M6IgZ7lhkFmVR1s98MVSijmXwH1SKT9vfjJwtn5i6A6MlrovVaxvX_dSAhNYAwgSuFTL97MsPJKjySIR0h1D4ImjT_i0xc3VhJktwHuz6WKQ","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJ_1SqvRCVnfy5B-NkzrRGBVpUJwtRKCMIAjKHa5ym6aIBWDaSeDIDNCaFCCaiYAwh2lRy5zhevhWAWHwxmm0HCnCs-5muqhO-KMBZjC_3yXKdhZbEaw_QGm9Xx-nz3n1EJ6SYuEuxIyCiN4UWyyG_VAefyz7ZGAYlYc2PcOzHskCNVXNQCh_0Yr7HpfK0KH0RwOCOQCOU5pCcjul3lq9XCeM3_CBbeou60-QQohI8vqMqQlBO9hYI6H92VXQbUj_IcEA0nKQnM4g1G2YV86cZ5p98TysrTnO-alWr_p9XbgP14DTGy4GiQyPa0eorTQfzU86S3AdA1Yjj3QeTi5_TwmbRkKDAkuXkPOMWDx_Kb8BC4suXr695QvOipZEdF9HkI_-nmq_JgfUBIDUYy3XsN8iFOFaEq5Vc-pj25K7tyNsMdPemqWSLaUgG3WBuxD_h0MRoY6CalKMKUS7wsZVODH52OJhUKyv6-MFI2vfW7fQN2UsuDp-yu27GTUbEyuqt_k7SwUgvTu3ZlmXMPN5SO_Ttw8r60tPSfXf9J3UTr4IcgX5r0ngwkSdL9k8fPQ5V8LZv61A83btbu0gb4Ql6KIWVpKd9zeJqFriZZwMqFY_SGnoqUYCFPxnyXpZcG8hoIAA"}'}
headers:
Cache-Control: ['no-cache, no-store']
Content-Length: ['2373']
Content-Length: ['2294']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:01 GMT']
Date: ['Fri, 13 Jan 2017 20:39:13 GMT']
Expires: ['-1']
P3P: [CP="DSP CUR OTPi IND OTRi ONL FIN"]
Pragma: [no-cache]
Server: [Microsoft-IIS/8.5]
Set-Cookie: [esctx=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJFG1xrMf6w360YHuYlyD1qYSZbLAIMzswwDb4iTgG5SYydPhLMnOPO87w42jz5AeZ43XCjY7ox_0TF68XQXscdOzT247tPUKRGMZZOujNSrjVKgzLZkGssZStC0TviiuPhiv4E1G15T9Wl7MUiQkf5ciLJI2EowOxiv5JdmCgnGkgAA;
domain=.login.microsoftonline.com; path=/; secure; HttpOnly, x-ms-gateway-slice=productiona;
Set-Cookie: [esctx=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJ5fRgw5Ey2OmZokEZCQiitjeN7VU22_XMtK7_W-VmD9WUX2STHptodJnORlmiQ_4xcavDzauPFiiO2Xdkn6qj1svRxKFgVPnICXM34SupfRrgBweOqLN9rpMpAoezwoX7_C_nhdRHxvCWiRSd9XFT7LOdHA5yIKqZrykEyK1x8rwgAA;
domain=.login.microsoftonline.com; path=/; secure; HttpOnly, x-ms-gateway-slice=corp;
path=/; secure; HttpOnly, stsservicecookie=ests; path=/; secure; HttpOnly]
Strict-Transport-Security: [max-age=31536000; includeSubDomains]
X-Content-Type-Options: [nosniff]
X-Powered-By: [ASP.NET]
client-request-id: [6d290fb6-5562-4841-ab4d-d269397c5274]
x-ms-request-id: [d39d9cc3-6e59-4257-8c5e-3856bfe63e1e]
client-request-id: [96ca039e-4551-494a-8877-bdc6bbce43a2]
x-ms-request-id: [7010c6b0-c225-4ab4-937d-e973715984d1]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c012d340-9a49-11e6-a9cc-acbc32b2789b]
x-ms-client-request-id: [58ab4498-d9d0-11e6-83eb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355217450,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339950845,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:01 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [2907790f-98b6-4da6-83ea-324178aba3ba]
x-ms-request-id: [2229d661-7867-4d8c-aee8-585268be5844]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -6,9 +6,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d23b001c-9a49-11e6-ac8b-acbc32b2789b]
x-ms-client-request-id: [669b4690-d9d0-11e6-92df-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=MKDIRS
response:
@ -17,13 +17,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:32 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [23c57c85-a700-4905-acbc-9aaad613af59]
x-ms-request-id: [41506508-d10c-4883-b97f-9bf5e002fc0b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -33,25 +33,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d2572834-9a49-11e6-9667-acbc32b2789b]
x-ms-client-request-id: [66d5b71c-d9d0-11e6-aafd-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:33 GMT']
Date: ['Fri, 13 Jan 2017 20:39:38 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [77450bfb-fd53-47ca-8c23-44333c1e1a41]
x-ms-request-id: [4e340e1a-a9f5-4301-ad0f-8af4bd6c761a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -61,25 +61,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d2926712-9a49-11e6-a1ee-acbc32b2789b]
x-ms-client-request-id: [6706a4dc-d9d0-11e6-88b8-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:32 GMT']
Date: ['Fri, 13 Jan 2017 20:39:38 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [7560df6d-107c-4d82-99da-9e8d305d542e]
x-ms-request-id: [9bc1d4c4-96c7-4a68-b9ac-6b430c4a933a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -89,25 +89,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d2cf9f10-9a49-11e6-9819-acbc32b2789b]
x-ms-client-request-id: [672dfad4-d9d0-11e6-8d2a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:33 GMT']
Date: ['Fri, 13 Jan 2017 20:39:38 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [24521769-d9da-49a9-a58c-bc759e3cca20]
x-ms-request-id: [254eec15-3a48-4a30-a792-2f273e65bd7c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -117,9 +117,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d30dc3c8-9a49-11e6-a452-acbc32b2789b]
x-ms-client-request-id: [67567d02-d9d0-11e6-9fa4-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a?OP=MKDIRS
response:
@ -128,13 +128,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:33 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [3a0c3924-33cf-4595-810e-fa2a1ef7baed]
x-ms-request-id: [495fcadf-e5e0-4309-836c-81ce4bd7378e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -144,25 +144,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d32c46fa-9a49-11e6-98aa-acbc32b2789b]
x-ms-client-request-id: [6767abf0-d9d0-11e6-871e-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/x.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/x.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:34 GMT']
Date: ['Fri, 13 Jan 2017 20:39:39 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/x.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/x.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e8b8f37a-6b9f-4b8e-9ee9-68e441697f53]
x-ms-request-id: [2aa1ae35-5d9c-4c8c-a95c-5f1f60a8714c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -172,25 +172,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d37163c2-9a49-11e6-8eee-acbc32b2789b]
x-ms-client-request-id: [67968ea2-d9d0-11e6-aff6-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/y.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/y.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:34 GMT']
Date: ['Fri, 13 Jan 2017 20:39:39 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/y.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/y.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8b46f246-1118-425c-b2fc-4dc9562c9f68]
x-ms-request-id: [620015bb-39be-4175-9c99-4410b18520fc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -200,25 +200,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d3a82710-9a49-11e6-952a-acbc32b2789b]
x-ms-client-request-id: [67c48c66-d9d0-11e6-a7a3-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/z.txt?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/z.txt?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39:39 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/z.txt?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/a/z.txt?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [38c5dde3-c934-4bce-9901-fdcd2bb146a3]
x-ms-request-id: [20781e51-c12f-418e-afe9-2378edcce38f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -228,9 +228,9 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d3ea6252-9a49-11e6-90d4-acbc32b2789b]
x-ms-client-request-id: [67f405e6-d9d0-11e6-9dda-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b?OP=MKDIRS
response:
@ -239,13 +239,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e3f966c8-9e0f-4ccf-9f5f-5f94f2d0d098]
x-ms-request-id: [51017ee1-70bf-4270-b639-fb3d670034b2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -255,25 +255,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d40857e6-9a49-11e6-b24d-acbc32b2789b]
x-ms-client-request-id: [6807677e-d9d0-11e6-998a-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/x.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/x.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39:40 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/x.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/x.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [21c81f1d-a116-4d22-b3fd-a9c1aab1584a]
x-ms-request-id: [b97d4710-8270-4889-8202-ee0475d5311c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -283,25 +283,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d44a142e-9a49-11e6-ba5a-acbc32b2789b]
x-ms-client-request-id: [683029ae-d9d0-11e6-bbd3-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/y.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/y.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:35 GMT']
Date: ['Fri, 13 Jan 2017 20:39:40 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/y.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/y.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0316c6a8-e403-4e7f-b197-74b88d2de65d]
x-ms-request-id: [df891c72-2a19-410a-b74d-ae74b0f63606]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -311,25 +311,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d4b153fa-9a49-11e6-a42a-acbc32b2789b]
x-ms-client-request-id: [685f16a4-d9d0-11e6-b9ed-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/z.txt?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/z.txt?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:37 GMT']
Date: ['Fri, 13 Jan 2017 20:39:40 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/z.txt?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data/b/z.txt?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ff9697bf-dc7e-4034-a220-4c54d7b95cf0]
x-ms-request-id: [2fdd1dc2-acc0-4228-b444-03a53bf7f7f3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -338,24 +338,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d4f0771a-9a49-11e6-9dff-acbc32b2789b]
x-ms-client-request-id: [688dd202-d9d0-11e6-a7e3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1477355254205,"modificationTime":1477355255642,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253023,"modificationTime":1477355253088,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1484339979249,"modificationTime":1484339980282,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978423,"modificationTime":1484339978489,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1065']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:36 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3e30040c-424b-4414-959a-9b3c863c18cc]
x-ms-request-id: [c1a5e4b8-8ae3-4396-aa3d-4344932f0988]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -364,24 +364,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d50ef7b0-9a49-11e6-87d3-acbc32b2789b]
x-ms-client-request-id: [689fadac-d9d0-11e6-9b17-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1477355254205,"modificationTime":1477355255642,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253023,"modificationTime":1477355253088,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1484339979249,"modificationTime":1484339980282,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978423,"modificationTime":1484339978489,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1065']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:37 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5b8154cb-35b3-4e97-b6f2-7ca74d8ccc2b]
x-ms-request-id: [228f6218-eda1-4e39-b1da-4fa7372436ca]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -390,24 +390,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d529c5f6-9a49-11e6-b340-acbc32b2789b]
x-ms-client-request-id: [68b15850-d9d0-11e6-be89-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1477355254205,"modificationTime":1477355255642,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253023,"modificationTime":1477355253088,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"data","type":"DIRECTORY","blockSize":0,"accessTime":1484339979249,"modificationTime":1484339980282,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978423,"modificationTime":1484339978489,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1065']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:37 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [390e2c3e-fcee-4498-81e2-aca1292cd822]
x-ms-request-id: [3b7f25e0-f7a0-4e41-bd6a-d3c46a2a684c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -417,24 +417,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d54cb9ee-9a49-11e6-ac0e-acbc32b2789b]
x-ms-client-request-id: [68c38eb0-d9d0-11e6-aaf6-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/data?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:37 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b7010e11-fe3e-460f-ad85-85dc7fa8ab19]
x-ms-request-id: [aed257e1-99e5-410a-8e80-049d02a0e589]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -443,24 +443,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d56e68c8-9a49-11e6-88cc-acbc32b2789b]
x-ms-client-request-id: [68e1a39c-d9d0-11e6-b288-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253023,"modificationTime":1477355253088,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978423,"modificationTime":1484339978489,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['810']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:37 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2ed141d5-6f67-49cf-9393-5dd3e81f6b8a]
x-ms-request-id: [c59b060a-cb7f-44ff-8737-7b5005807d89]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -469,24 +469,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d58a6a5a-9a49-11e6-a86b-acbc32b2789b]
x-ms-client-request-id: [68f369be-d9d0-11e6-8d39-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253023,"modificationTime":1477355253088,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"x.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978423,"modificationTime":1484339978489,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['810']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:38 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [00419b5b-97f8-49a3-bf69-874db4b11bea]
x-ms-request-id: [79b6b6a1-1d37-41f1-9db3-12f637597462]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -496,24 +496,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d5a79350-9a49-11e6-a119-acbc32b2789b]
x-ms-client-request-id: [690557c2-d9d0-11e6-ab02-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/x.csv?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:38 GMT']
Date: ['Fri, 13 Jan 2017 20:39:41 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0c26fe6a-f5b9-415c-aaa4-e85d606160e1]
x-ms-request-id: [9309d84b-dae1-4b78-a80f-759c707af2f5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -522,24 +522,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d5ccab2c-9a49-11e6-b4bb-acbc32b2789b]
x-ms-client-request-id: [69227d6c-d9d0-11e6-b129-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['551']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:38 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f1a974ef-6d7d-4cee-ab97-3bcccb4d1f95]
x-ms-request-id: [99c96ff0-7b32-4482-8956-dd7303200f1e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -548,24 +548,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d5f01b34-9a49-11e6-a0af-acbc32b2789b]
x-ms-client-request-id: [69342fe6-d9d0-11e6-8138-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1477355253399,"modificationTime":1477355253494,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"y.csv","type":"FILE","blockSize":268435456,"accessTime":1484339978727,"modificationTime":1484339978775,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['551']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:38 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [635b1eed-75fe-48f9-a2fb-8cda55c77939]
x-ms-request-id: [c55cf254-15bb-4be4-b3b5-842f84e702fd]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -575,24 +575,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d60c322e-9a49-11e6-9692-acbc32b2789b]
x-ms-client-request-id: [6945bcda-d9d0-11e6-b6b9-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/y.csv?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c6699ab9-f34b-4976-a748-a1cffc81d88d]
x-ms-request-id: [cd6bed92-5358-45cb-a262-b6f8ba99da7e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -601,24 +601,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d6343b02-9a49-11e6-91a6-acbc32b2789b]
x-ms-client-request-id: [696174e6-d9d0-11e6-af49-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['292']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4870e63d-12c0-4df1-b6dc-05af4f485ed5]
x-ms-request-id: [82be6be9-b5bf-465d-93b5-ca15238adb36]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -627,24 +627,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d64fe9b0-9a49-11e6-949b-acbc32b2789b]
x-ms-client-request-id: [69732836-d9d0-11e6-bd72-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1477355253814,"modificationTime":1477355253883,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"z.txt","type":"FILE","blockSize":268435456,"accessTime":1484339978993,"modificationTime":1484339979047,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['292']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [68554ec0-30f5-422c-8200-1156f4145787]
x-ms-request-id: [3dc7a133-9128-4c53-8ea4-cd1e67ec1a6e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -654,24 +654,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [d66b4976-9a49-11e6-86f6-acbc32b2789b]
x-ms-client-request-id: [6985033a-d9d0-11e6-81bf-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/z.txt?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:39 GMT']
Date: ['Fri, 13 Jan 2017 20:39:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [79a8b89b-cb84-4fdc-bcc3-4a6b84d553f6]
x-ms-request-id: [c8ece350-c3d5-4e99-a87f-6b7c193a501a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -206,25 +206,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1036924-9a49-11e6-a2b1-acbc32b2789b]
x-ms-client-request-id: [58fa6376-d9d0-11e6-8369-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:04 GMT']
Date: ['Fri, 13 Jan 2017 20:39:14 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b6041e61-76a1-4a49-b2b1-1ff336520096]
x-ms-request-id: [17e9339c-2743-4595-b939-bfaa0d36f0f5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -233,24 +233,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1776e8c-9a49-11e6-b87e-acbc32b2789b]
x-ms-client-request-id: [595ba9f0-d9d0-11e6-bbda-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:03 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [b05dbfe4-a870-446a-9d45-437d8eb40a37]
x-ms-request-id: [8da0a12d-e74e-4bc5-ba1a-ebb020312666]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -259,24 +259,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1940918-9a49-11e6-8834-acbc32b2789b]
x-ms-client-request-id: [59730266-d9d0-11e6-afcf-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:04 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [64a87e1c-1ecb-4298-8cfc-b1cbff486d66]
x-ms-request-id: [03395207-13ca-423a-afe9-34c6b4af6c5b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -285,11 +285,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1af4b18-9a49-11e6-9ecc-acbc32b2789b]
x-ms-client-request-id: [5986477e-d9d0-11e6-ad74-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=0&read=true&length=6000
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=6000&offset=0
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -495,14 +495,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:04 GMT']
Date: ['Fri, 13 Jan 2017 20:39:16 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a503b527-5ccd-42bc-9b03-ecadc28c7813]
x-ms-request-id: [39f017ef-b14d-4f1e-868d-07f9b0437072]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -511,24 +511,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1decf34-9a49-11e6-a6e9-acbc32b2789b]
x-ms-client-request-id: [5a00e55c-d9d0-11e6-8284-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:05 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [d16a05ef-7068-4c44-80b1-f6fc085b8fe0]
x-ms-request-id: [e32f7f82-ae24-4beb-9a92-1893751d8e6c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -537,24 +537,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c1fabdb4-9a49-11e6-a9c0-acbc32b2789b]
x-ms-client-request-id: [5a12fcec-d9d0-11e6-98e0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:05 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [1ea3e6dd-dafd-4e54-b4ee-f008508405c9]
x-ms-request-id: [cd10ebb0-b1c1-41be-a126-c1b1338b6094]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -563,11 +563,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c237ddb6-9a49-11e6-ad6d-acbc32b2789b]
x-ms-client-request-id: [5a256e7a-d9d0-11e6-ac62-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=2400&read=true&length=1200
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=1200&offset=3600
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -613,14 +613,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:06 GMT']
Date: ['Fri, 13 Jan 2017 20:39:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [688faf1b-9cea-4eae-9b8d-499f1fe745a5]
x-ms-request-id: [f72af32f-7e2c-4394-a45a-2227e6de36a5]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -629,11 +629,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c2690724-9a49-11e6-b946-acbc32b2789b]
x-ms-client-request-id: [5a6a4d36-d9d0-11e6-bbbb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=3600&read=true&length=1200
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=1200&offset=1200
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -679,14 +679,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:05 GMT']
Date: ['Fri, 13 Jan 2017 20:39:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ac983554-5edd-4747-93bd-bf915ec619f5]
x-ms-request-id: [f6cb969e-ef26-46ec-95d2-6e6f989156eb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -695,11 +695,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c286eb2c-9a49-11e6-b23c-acbc32b2789b]
x-ms-client-request-id: [5a86f32e-d9d0-11e6-a452-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=0&read=true&length=1200
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=1200&offset=4800
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -745,14 +745,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:06 GMT']
Date: ['Fri, 13 Jan 2017 20:39:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5f3c1a08-460d-4663-adda-d47f612e06c7]
x-ms-request-id: [bc27a673-dca8-4f14-a9f7-79819b59a09a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -761,11 +761,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c2a948f0-9a49-11e6-a4e9-acbc32b2789b]
x-ms-client-request-id: [5a9b424c-d9d0-11e6-a6b5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=4800&read=true&length=1200
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=1200&offset=2400
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -811,14 +811,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:05 GMT']
Date: ['Fri, 13 Jan 2017 20:39:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [599511d9-31c6-4e41-a551-c0ed72a2d59f]
x-ms-request-id: [9a80e6e5-45e3-42a8-a3be-b1f9181b3ed8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -827,11 +827,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c2cef392-9a49-11e6-a49e-acbc32b2789b]
x-ms-client-request-id: [5ac525a8-d9d0-11e6-8f4f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=1200&read=true&length=1200
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=1200&offset=0
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -877,14 +877,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:06 GMT']
Date: ['Fri, 13 Jan 2017 20:39:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5af4ee5b-34eb-4598-8806-47baccdab4cf]
x-ms-request-id: [db1d8653-f13a-49c2-b970-836a0433c81c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -893,24 +893,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c2f47cb4-9a49-11e6-96f5-acbc32b2789b]
x-ms-client-request-id: [5add8cee-d9d0-11e6-afb6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:06 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e5b57331-742d-4bec-b8ff-064ee2b90781]
x-ms-request-id: [1a414c01-e203-4cbb-8d91-078f8ae09b00]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -919,24 +919,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c310bda2-9a49-11e6-877b-acbc32b2789b]
x-ms-client-request-id: [5af002c0-d9d0-11e6-8cf2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:06 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [8b8ff309-5eaa-47bd-819a-6f82a4818cb1]
x-ms-request-id: [8a12f5da-ba21-48e5-bc7f-94cc9566b955]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -945,24 +945,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c32c56c0-9a49-11e6-bc51-acbc32b2789b]
x-ms-client-request-id: [5b0259f4-d9d0-11e6-b518-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355224013,"modificationTime":1477355224153,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339955553,"modificationTime":1484339955587,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:07 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [3a2baec5-0572-44f4-98e7-2ec77bf7fc3f]
x-ms-request-id: [04fa0a17-2e38-4879-9667-7bd416e3137f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -972,24 +972,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c3500a70-9a49-11e6-b35b-acbc32b2789b]
x-ms-client-request-id: [5b155d90-d9d0-11e6-8ee3-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:07 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [4e31578a-cd4d-4e35-b3ce-6e3e5c902c34]
x-ms-request-id: [8336cafd-60e6-4a7f-96b9-f20878d2d6e6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -206,25 +206,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['6000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c3750cf8-9a49-11e6-ae22-acbc32b2789b]
x-ms-client-request-id: [5b3b7d5e-d9d0-11e6-868b-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:07 GMT']
Date: ['Fri, 13 Jan 2017 20:39:19 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4328930b-39da-499f-b552-53b79cba3e9a]
x-ms-request-id: [be529b8a-4478-4b85-a63d-0830ffeaf84e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -233,24 +233,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c3b3a9b8-9a49-11e6-bba7-acbc32b2789b]
x-ms-client-request-id: [5bae17d4-d9d0-11e6-acf3-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1477355228081,"modificationTime":1477355228161,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1484339959428,"modificationTime":1484339959476,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:07 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [048bb170-19fd-4962-8686-01b6b7027aa3]
x-ms-request-id: [9eb27ed2-e551-44e3-ac1c-c258210027ee]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -259,24 +259,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c3ceb7ba-9a49-11e6-8b00-acbc32b2789b]
x-ms-client-request-id: [5bc0f866-d9d0-11e6-9773-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355228081,"modificationTime":1477355228161,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339959428,"modificationTime":1484339959476,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:08 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [7268fb70-d6a8-43a0-8676-fa5eacfd3cff]
x-ms-request-id: [3530c6ad-e079-4b07-bc9a-048b8eaa2f21]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -285,11 +285,11 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c3ea605c-9a49-11e6-814f-acbc32b2789b]
x-ms-client-request-id: [5bd459e2-d9d0-11e6-917a-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=OPEN&offset=0&read=true&length=6000
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?read=true&OP=OPEN&length=6000&offset=0
response:
body: {string: '00000,11111,22222,33333,44444,55555,66666,77777,88888,99999
@ -495,14 +495,14 @@ interactions:
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:08 GMT']
Date: ['Fri, 13 Jan 2017 20:39:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8d634aa9-06c6-450f-9b0f-492e88f5eb74]
x-ms-request-id: [8737dc1d-a360-4a80-b8d0-5c85786f1810]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -511,24 +511,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c429e3da-9a49-11e6-b99c-acbc32b2789b]
x-ms-client-request-id: [5c213ca2-d9d0-11e6-8e96-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355228081,"modificationTime":1477355228161,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339959428,"modificationTime":1484339959476,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:08 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [d1271ffb-762a-4bb4-a4e7-6c0e64b9d411]
x-ms-request-id: [f5412bdd-9a31-482e-a413-2937c4483728]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -537,24 +537,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c44604e6-9a49-11e6-a905-acbc32b2789b]
x-ms-client-request-id: [5c3489fa-d9d0-11e6-a5c0-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355228081,"modificationTime":1477355228161,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339959428,"modificationTime":1484339959476,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:08 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [30917052-673d-4598-ad48-868d0784f103]
x-ms-request-id: [abd4cc1d-628d-4c22-9867-fa7e3cc6614b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -563,24 +563,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c4622f10-9a49-11e6-80ae-acbc32b2789b]
x-ms-client-request-id: [5c4810e6-d9d0-11e6-b9b7-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1477355228081,"modificationTime":1477355228161,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6000,"pathSuffix":"remote.csv","type":"FILE","blockSize":268435456,"accessTime":1484339959428,"modificationTime":1484339959476,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['300']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:09 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [c346a24c-6734-46de-8029-90b618344b9a]
x-ms-request-id: [4209c327-7b8c-42be-bb99-8ef2730ecd72]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -590,24 +590,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [c47e67d4-9a49-11e6-8345-acbc32b2789b]
x-ms-client-request-id: [5c5b8238-d9d0-11e6-89ea-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/remote.csv?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:08 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [6b481491-349e-478f-a15e-d2e05d2954f3]
x-ms-request-id: [3f7437c7-77cc-4b9a-8e7d-c955ae32b18a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -0,0 +1,28 @@
interactions:
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [1964f1b0-d9e1-11e6-8a3c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484346729170,"modificationTime":1484346729170,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 22:39: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: [55acdaa3-e0c5-476c-9d6b-d639fdd8b90d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e291c574-9a49-11e6-83d3-acbc32b2789b]
x-ms-client-request-id: [73c31fec-d9d0-11e6-8f26-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339995550,"modificationTime":1484339999877,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:28:00 GMT']
Date: ['Fri, 13 Jan 2017 20:40: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: [473bca2f-ca44-4e1e-ae08-18c7fa8049ad]
x-ms-request-id: [be9178f4-0df2-42ee-ac86-1da2e32bff73]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -31,24 +31,130 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e2ad772e-9a49-11e6-b419-acbc32b2789b]
x-ms-client-request-id: [74006ce8-d9d0-11e6-8c83-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355280014,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339995550,"modificationTime":1484339999877,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:40: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: [21d5d6b9-8b8c-408a-aa0d-092653cb9d0d]
x-ms-request-id: [f9ac13bc-7d94-4920-9435-5f0b10b29031]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [7411f926-d9d0-11e6-b983-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?recursive=False&OP=DELETE
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, 13 Jan 2017 20:40: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: [1318c838-d2ec-4b8f-838a-a6130efa1061]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [742b4258-d9d0-11e6-9082-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:40: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: [48613197-ba9b-47a5-910c-14747befad23]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [743cf6c8-d9d0-11e6-8f52-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:40: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: [9f38bb21-6b8b-4736-86a6-f510c9f3a95a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [744e9912-d9d0-11e6-a476-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"Folder
does not exist: /azure_test_dir [1db1496d-cdcb-4369-80d0-64392162cf78][2017-01-13T12:40:01.0116218-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['230']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:40: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: [1db1496d-cdcb-4369-80d0-64392162cf78]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 404, message: Not Found}
version: 1

Просмотреть файл

@ -1,4 +1,83 @@
interactions:
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [707545da-d9d0-11e6-a1fd-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339994315,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:39: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: [3f23946c-d124-440b-8e7f-2854d69aa625]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [70b26088-d9d0-11e6-b7e9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484339701363,"modificationTime":1484339994315,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:39: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: [407a6e4b-e849-4810-b185-1993639cc51f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [70c3f176-d9d0-11e6-b8d5-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?recursive=False&OP=DELETE
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, 13 Jan 2017 20:39: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: [231dba85-01d3-4088-8bf5-56dba996a868]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: 0123456789
headers:
@ -6,25 +85,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dee5561e-9a49-11e6-a389-acbc32b2789b]
x-ms-client-request-id: [70dd5b18-d9d0-11e6-a00c-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/b?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39:54 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/b?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [45517306-91d2-4107-812c-478df41e7b76]
x-ms-request-id: [572c4c75-6d8a-4bd1-9c25-341651582c7a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -34,25 +113,81 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [df292850-9a49-11e6-af66-acbc32b2789b]
x-ms-client-request-id: [713b6638-d9d0-11e6-b116-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/c?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/c?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [655782e2-672f-4f99-8cd8-38cbb42d92b3]
x-ms-request-id: [f8ecc03d-6b3d-4952-8bc6-3002854f7b1e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [71689526-d9d0-11e6-ac36-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/c?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 13 Jan 2017 20:39:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/c?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [67bc72fd-e8df-4243-b381-a5c14e51d599]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [719420a2-d9d0-11e6-b35d-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/b?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 13 Jan 2017 20:39:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/b?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [fc6cd615-54b3-4526-9e63-96a4f94c8edc]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -62,81 +197,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [df667de6-9a49-11e6-a0f4-acbc32b2789b]
x-ms-client-request-id: [71bba664-d9d0-11e6-af93-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:54 GMT']
Date: ['Fri, 13 Jan 2017 20:39:56 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c574cb85-adf7-4df9-99da-81e86c5cf199]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dfa86940-9a49-11e6-bbdd-acbc32b2789b]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&overwrite=true&write=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:54 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&overwrite=true&write=true']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c38484e9-a922-4a3f-87fa-d9eea6a427c4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dff8a11c-9a49-11e6-b9f6-acbc32b2789b]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?OP=CREATE&overwrite=true&write=true
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:55 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?OP=CREATE&overwrite=true&write=true']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6c1013b8-6cf6-460f-a69c-302e45a7c909]
x-ms-request-id: [79cafa6a-63b3-4f51-9cda-fd8e006fb85a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -145,24 +224,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e03f431c-9a49-11e6-9fe1-acbc32b2789b]
x-ms-client-request-id: [72000db8-d9d0-11e6-8f6b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:55 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [8144dafc-ffd5-4221-852f-42a53a328b57]
x-ms-request-id: [442ae79f-024f-4097-922a-bae191efeda8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -171,24 +250,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e05b0b24-9a49-11e6-91a7-acbc32b2789b]
x-ms-client-request-id: [7212e636-d9d0-11e6-8ba2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355275878,"modificationTime":1477355275961,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355274085,"modificationTime":1477355274205,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1477355274519,"modificationTime":1477355274627,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339995858,"modificationTime":1484339995932,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339996449,"modificationTime":1484339996490,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1484339996159,"modificationTime":1484339996227,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['801']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [6d8b5170-5ba4-491b-bc0f-8467d86d07e2]
x-ms-request-id: [4bc76f67-397c-4a10-8880-89810af147d9]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -197,24 +276,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e0770718-9a49-11e6-89b2-acbc32b2789b]
x-ms-client-request-id: [7227d6c6-d9d0-11e6-ae9c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?OP=OPEN&offset=0&read=true&length=10
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2/a?read=true&OP=OPEN&length=10&offset=0
response:
body: {string: 0123456789}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39:56 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4e1015aa-0ced-4e0a-a4dd-0c42ddf01881]
x-ms-request-id: [9d2d1460-7203-43cb-aced-31a81ed222d6]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -223,24 +302,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e094aadc-9a49-11e6-8118-acbc32b2789b]
x-ms-client-request-id: [72437eee-d9d0-11e6-b13b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [327e1218-9c25-4c60-9815-a68079e5b249]
x-ms-request-id: [6b46e679-c3b9-415a-a67a-9764c26ac9e4]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -249,24 +328,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e0d6d7fe-9a49-11e6-80f3-acbc32b2789b]
x-ms-client-request-id: [72560588-d9d0-11e6-a4df-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested2","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355275900,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested2","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339996453,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [f0105f32-225d-4c6f-896b-a22601e56d78]
x-ms-request-id: [052e5236-5c10-4fa6-8f9a-15cd8bee0673]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -275,24 +354,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e0f300d2-9a49-11e6-88ac-acbc32b2789b]
x-ms-client-request-id: [7267b6cc-d9d0-11e6-83e2-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355275878,"modificationTime":1477355275961,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355274085,"modificationTime":1477355274205,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1477355274519,"modificationTime":1477355274627,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339995858,"modificationTime":1484339995932,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339996449,"modificationTime":1484339996490,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1484339996159,"modificationTime":1484339996227,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['801']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [64ca4c5d-9560-492a-8c6e-7c249f4783a0]
x-ms-request-id: [ce8eb19a-d620-4da4-8cbd-edc5de571125]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -301,24 +380,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e10eb642-9a49-11e6-81fd-acbc32b2789b]
x-ms-client-request-id: [727a19d8-d9d0-11e6-a299-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:56 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [69dada9c-dce8-46f9-82d8-8bf5bc3153cf]
x-ms-request-id: [a5c34c44-18dd-4dc4-8607-338bbeffaf05]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -327,24 +406,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e12a2ca6-9a49-11e6-834e-acbc32b2789b]
x-ms-client-request-id: [728c9076-d9d0-11e6-ba82-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested2","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355275900,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested2","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339996453,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:57 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [1b8c01e0-c525-44b5-a173-de7359471aea]
x-ms-request-id: [099f647d-d12c-4306-8eab-084b9a2a2d12]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -353,24 +432,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e145306e-9a49-11e6-8d94-acbc32b2789b]
x-ms-client-request-id: [729e5676-d9d0-11e6-8b59-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1/nested2?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1477355275878,"modificationTime":1477355275961,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1477355274085,"modificationTime":1477355274205,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1477355274519,"modificationTime":1477355274627,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1484339995858,"modificationTime":1484339995932,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"b","type":"FILE","blockSize":268435456,"accessTime":1484339996449,"modificationTime":1484339996490,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"c","type":"FILE","blockSize":268435456,"accessTime":1484339996159,"modificationTime":1484339996227,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['801']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:57 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [dc250cff-2fbc-4259-895e-66bc0e909c8d]
x-ms-request-id: [51875c35-1d79-44ae-b5de-ca6f36309a5c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -379,24 +458,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e16720f0-9a49-11e6-9214-acbc32b2789b]
x-ms-client-request-id: [72e585ae-d9d0-11e6-8c34-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:58 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [f16507b4-6517-4cbb-b2ae-19224f7b7571]
x-ms-request-id: [ab65febd-0ef2-4c52-a1d9-fc32a154eddb]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -405,24 +484,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e1845488-9a49-11e6-bf9b-acbc32b2789b]
x-ms-client-request-id: [72f88500-d9d0-11e6-a807-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:57 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [29aeee51-9031-424b-a9f1-9360458a1114]
x-ms-request-id: [c2e948a5-1536-44d2-8343-b2456a3bf894]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -431,24 +510,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e1a0280c-9a49-11e6-a909-acbc32b2789b]
x-ms-client-request-id: [730b0f02-d9d0-11e6-b504-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355274967,"modificationTime":1477355275055,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339996697,"modificationTime":1484339996750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['821']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:58 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [7e8632fb-6b18-4221-80d2-b27eb54c2b4e]
x-ms-request-id: [104cabe9-2baf-43ff-8aef-f70e135713c2]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -458,24 +537,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e1bc1678-9a49-11e6-82a7-acbc32b2789b]
x-ms-client-request-id: [731dc042-d9d0-11e6-96a4-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:58 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [df7f46f6-733b-45e0-b780-c4ea549fb6d6]
x-ms-request-id: [a4393b9d-6a95-4775-8c67-2786cb8a39a8]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -484,24 +563,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e1dd94f6-9a49-11e6-a328-acbc32b2789b]
x-ms-client-request-id: [7339ec6e-d9d0-11e6-b756-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['556']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [7f2af76b-1137-435a-a367-17c851869e19]
x-ms-request-id: [ee97f6f2-edb5-426f-ab47-1428451967de]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -510,24 +589,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e1f9e858-9a49-11e6-a625-acbc32b2789b]
x-ms-client-request-id: [734c9ee2-d9d0-11e6-976e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355275373,"modificationTime":1477355275467,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339995530,"modificationTime":1484339995595,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['556']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:58 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e57f5ccc-72da-4840-909b-da9badb28b58]
x-ms-request-id: [990abe22-f8ee-4d1b-93e4-988c9189761a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -537,24 +616,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e215a49c-9a49-11e6-9639-acbc32b2789b]
x-ms-client-request-id: [735f5000-d9d0-11e6-9528-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:58 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [09d15ea6-22b1-4b8d-8e1a-100141f042d4]
x-ms-request-id: [ed78b18b-893b-4645-8bee-e090b5158a3e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -563,24 +642,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e235de10-9a49-11e6-91c7-acbc32b2789b]
x-ms-client-request-id: [737ab8a4-d9d0-11e6-9685-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [b6723701-9637-40cd-bc3f-f53977198566]
x-ms-request-id: [c131df85-09b3-45bc-a875-481f4a7bdc9c]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -589,24 +668,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e2517c42-9a49-11e6-ade8-acbc32b2789b]
x-ms-client-request-id: [738c5894-d9d0-11e6-ad5e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1477355274106,"modificationTime":1477355274106,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"nested1","type":"DIRECTORY","blockSize":0,"accessTime":1484339995879,"modificationTime":1484339995879,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['291']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e94f3873-ae53-41ae-a16d-41381834c1f1]
x-ms-request-id: [18b62e68-8667-4166-9a34-fa460e3389ce]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -616,24 +695,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e26d4530-9a49-11e6-bd09-acbc32b2789b]
x-ms-client-request-id: [739e4578-d9d0-11e6-895e-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/nested1?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:28:00 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [92181367-23f2-4554-849e-f020f90eb209]
x-ms-request-id: [f49ea2c7-7191-4469-8683-ac8cf03e032d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,9 +5,9 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dd198724-9a49-11e6-a699-acbc32b2789b]
x-ms-client-request-id: [6e85f49e-d9d0-11e6-afd1-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -16,13 +16,39 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:50 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [9d864fb9-09d1-4c83-bcaa-d3ba0f9e8160]
x-ms-request-id: [de8b8708-e290-41eb-82fd-e4c2d9a5a16d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6ec480e2-d9d0-11e6-8540-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
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, 13 Jan 2017 20:39: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: [1e47e60d-2893-4adf-9254-89bb13a30710]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -32,25 +58,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dd34464a-9a49-11e6-907d-acbc32b2789b]
x-ms-client-request-id: [6ed62f86-d9d0-11e6-a907-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:51 GMT']
Date: ['Fri, 13 Jan 2017 20:39:51 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [20614f27-c42c-4dca-a66f-caaedb8cd65f]
x-ms-request-id: [a5fbadc1-e51b-431d-8713-45c7c1a2a5a7]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -59,24 +85,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dd72f5d2-9a49-11e6-8cd0-acbc32b2789b]
x-ms-client-request-id: [6f31f0f6-d9d0-11e6-bbcd-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:51 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [476885fe-504e-4d6e-b12e-e5fcb03175cf]
x-ms-request-id: [b208b7d2-2f41-44e4-99d6-5771f8b44a55]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -85,24 +111,50 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dd8e6206-9a49-11e6-845e-acbc32b2789b]
x-ms-client-request-id: [6f44a740-d9d0-11e6-a0c5-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:51 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [05e39e36-ed79-4bcc-86ed-8746cadc914f]
x-ms-request-id: [36411e66-b708-40e1-89a7-b877dd159b92]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6f56eddc-d9d0-11e6-a4d9-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:39: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: [684d9bc6-b17e-458b-8096-e3d61691f6f3]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -112,25 +164,25 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dda9ee4a-9a49-11e6-a0c2-acbc32b2789b]
x-ms-client-request-id: [6f69d566-d9d0-11e6-85d0-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&overwrite=true&write=true
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?overwrite=true&write=true&OP=CREATE
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39:52 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&overwrite=true&write=true']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?overwrite=true&write=true&OP=CREATE']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [cb578873-002e-41a1-b3b0-9fec21675915]
x-ms-request-id: [a493bd31-1ee5-4d13-9b88-22510eb43c90]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 201, message: Created}
- request:
@ -139,24 +191,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [de08cce4-9a49-11e6-9924-acbc32b2789b]
x-ms-client-request-id: [6fd503fe-d9d0-11e6-af5b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355272048,"modificationTime":1477355272210,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339993108,"modificationTime":1484339993168,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['563']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [82897fdf-8d05-43cf-8881-ec46b40aca80]
x-ms-request-id: [3f2f0b95-2436-4670-981a-f3b8cd84a244]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -165,24 +217,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [de262d02-9a49-11e6-9cab-acbc32b2789b]
x-ms-client-request-id: [6fe97590-d9d0-11e6-aa7f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1477355272048,"modificationTime":1477355272210,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10000,"pathSuffix":"bigfile","type":"FILE","blockSize":268435456,"accessTime":1484339993108,"modificationTime":1484339993168,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['563']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [c9d278f0-9730-46a0-b58c-20e06d8d7d63]
x-ms-request-id: [907c0301-06e8-4503-8d44-245b3112c92b]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -192,24 +244,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [de44df40-9a49-11e6-95ce-acbc32b2789b]
x-ms-client-request-id: [6ffc0688-d9d0-11e6-ad6a-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=DELETE&recursive=False
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?recursive=False&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [e93ec68c-2099-4a15-b4f1-865f86a4a4f5]
x-ms-request-id: [0e5edf2e-8b97-482a-85df-2c58d590339d]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -218,24 +270,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [de67ff8c-9a49-11e6-ad38-acbc32b2789b]
x-ms-client-request-id: [70178612-d9d0-11e6-975f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [0d215af0-d4c1-433d-898b-6a473eed457a]
x-ms-request-id: [ae833646-caaf-4fac-b60d-f85f89f78343]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -244,24 +296,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [de888538-9a49-11e6-9be5-acbc32b2789b]
x-ms-client-request-id: [702a26e6-d9d0-11e6-b470-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:53 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [efc1237a-998e-4da7-91bc-b82289bd5bc6]
x-ms-request-id: [dc7ea9ca-a93d-447d-b6ec-4566092c653f]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -270,24 +322,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [dea41eba-9a49-11e6-97a2-acbc32b2789b]
x-ms-client-request-id: [703cb100-d9d0-11e6-9c7e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1477355271233,"modificationTime":1477355271293,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1484339992123,"modificationTime":1484339992190,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['298']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [077cf7c4-7cca-42f7-ba31-df4d05fd3428]
x-ms-request-id: [a9fd387a-6b63-4694-8e06-84789be1e2fa]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -297,24 +349,24 @@ interactions:
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [debfe6fe-9a49-11e6-b6e4-acbc32b2789b]
x-ms-client-request-id: [704f0cf0-d9d0-11e6-b71e-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=DELETE&recursive=True
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?recursive=True&OP=DELETE
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: ['Tue, 25 Oct 2016 00:27:52 GMT']
Date: ['Fri, 13 Jan 2017 20:39: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: [549aeb46-75f5-4904-a954-7add07f9b040]
x-ms-request-id: [20dd27d3-13a4-4578-9a3e-4ada197d7485]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -5,24 +5,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e2ca84ac-9a49-11e6-93ef-acbc32b2789b]
x-ms-client-request-id: [74689dd0-d9d0-11e6-a7f6-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355280014,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['287']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:40: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: [423c83b0-8761-42de-8390-26040d002e5f]
x-ms-request-id: [43d84897-751c-4c9b-9184-108bb384ed91]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -31,9 +31,62 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
Content-Length: ['0']
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e2e61dc0-9a49-11e6-a12f-acbc32b2789b]
x-ms-client-request-id: [74a971da-d9d0-11e6-8032-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=MKDIRS
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, 13 Jan 2017 20:40: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: [1852f0ed-5dda-441c-9ae2-9b14e2025f17]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [74bc36a2-d9d0-11e6-a71f-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484340001609,"modificationTime":1484340001609,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 13 Jan 2017 20:40: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: [4e22f593-3ef2-46e3-8dc9-70605e0fbe57]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [74cf495a-d9d0-11e6-a1ab-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS
response:
@ -42,13 +95,13 @@ interactions:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['34']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:27:59 GMT']
Date: ['Fri, 13 Jan 2017 20:40: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: [0a197557-bb08-474b-b3ee-a8511d1f920e]
x-ms-request-id: [0cb799b6-9fe1-4f32-8421-1d2eb8dd1d1a]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
- request:
@ -57,24 +110,24 @@ interactions:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Darwin-15.6.0-x86_64-i386-64bit) azure.datalake.store.lib/0.0.1
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.1
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [e3058806-9a49-11e6-9585-acbc32b2789b]
x-ms-client-request-id: [74e19d68-d9d0-11e6-9c09-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":5012,"pathSuffix":"README.rst","type":"FILE","blockSize":268435456,"accessTime":1475276603298,"modificationTime":1475276603391,"replication":1,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1474578598739,"modificationTime":1477355280014,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1477069231910,"modificationTime":1477069231910,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"joseph","type":"DIRECTORY","blockSize":0,"accessTime":1472608724061,"modificationTime":1477068888387,"replication":0,"permission":"700","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":39,"pathSuffix":"test.csv","type":"FILE","blockSize":268435456,"accessTime":1469226766337,"modificationTime":1475168613454,"replication":1,"permission":"777","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1477355170977,"modificationTime":1477355170977,"replication":0,"permission":"770","owner":"49b2f9ec-818a-49ca-9424-249e1f19f7d7","group":"49b2f9ec-818a-49ca-9424-249e1f19f7d7"}]}}'}
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1484340001609,"modificationTime":1484340001609,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1484331873300,"modificationTime":1484331873300,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['1598']
Content-Length: ['552']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 25 Oct 2016 00:28:00 GMT']
Date: ['Fri, 13 Jan 2017 20:40: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: [09dfc565-5ef1-4acb-8fbd-3699c22cfc3b]
x-ms-request-id: [5ef291e8-a1af-4fdd-b4e0-78aad939e58e]
x-ms-webhdfs-version: [16.07.18.01]
status: {code: 200, message: OK}
version: 1

Просмотреть файл

@ -28,7 +28,7 @@ if RECORD_MODE == 'none':
SUBSCRIPTION_ID = fake_settings.SUBSCRIPTION_ID
RESOURCE_GROUP_NAME = fake_settings.RESOURCE_GROUP_NAME
else:
STORE_NAME = os.environ['azure_store_name']
STORE_NAME = os.environ['azure_data_lake_store_name']
TENANT_ID = os.environ.get('azure_tenant_id', 'common')
TOKEN = auth(TENANT_ID,
os.environ['azure_username'],

Просмотреть файл

@ -13,7 +13,7 @@ import os
import pytest
from azure.datalake.store.cli import AzureDataLakeFSCommand
from samples.cli import AzureDataLakeFSCommand
from tests.testing import azure, my_vcr, working_dir
@ -215,7 +215,7 @@ def test_put(capsys, tmpdir, azure, client):
lf.write(b'123456')
with setup_dir(azure) as azuredir:
client.onecmd(' '.join(['put', '-f', localfile, azuredir]))
client.onecmd(' '.join(['put', '-f', localfile, azuredir + '/foo']))
client.onecmd('head ' + azuredir + '/foo')
assert read_stdout(capsys).endswith('123456')

Просмотреть файл

@ -603,7 +603,11 @@ def test_chmod(azure):
with pytest.raises((OSError, IOError)):
with azure.open(a, 'ab') as f:
f.write(b'data')
try:
f.write(b'data')
except Exception as e:
print(e)
raise e
azure.chmod(a, '0770')
azure.rm(a)

Просмотреть файл

@ -273,6 +273,7 @@ def test_upload_glob(tempdir, azure):
rfiles = [posix(AzureDLPath(f).relative_to(test_dir))
for f in up.rfiles]
assert rfiles == [posix('a', 'z.txt'), posix('b', 'z.txt')]
@ -281,11 +282,16 @@ def test_upload_overwrite(local_files, azure):
bigfile, littlefile, a, b, c = local_files
with azure_teardown(azure):
# create the folder that we want to make sure the overwrite
# test fails on if it doesn't already exist
if not azure.exists(test_dir):
azure.mkdir(test_dir)
with pytest.raises(OSError) as e:
ADLUploader(azure, test_dir, littlefile, nthreads=1)
assert test_dir.as_posix() in str(e)
@my_vcr.use_cassette
def test_save_up(local_files, azure):
bigfile, littlefile, a, b, c = local_files
root = os.path.dirname(bigfile)

Просмотреть файл

@ -86,10 +86,15 @@ def azure_teardown(fs):
try:
yield
finally:
for path in fs.ls(working_dir()):
if fs.exists(path):
fs.rm(path, recursive=True)
# this is a best effort. If there is an error attempting to delete during cleanup,
# print it, but it should not cause the test to fail.
try:
for path in fs.ls(working_dir()):
if fs.exists(path):
fs.rm(path, recursive=True)
except Exception as e:
print('warning: cleanup failed with exception:')
print(e)
@contextmanager
def ignoring(*exceptions):