Update to version 0.0.6
This includes: Performance fixes for upload and download of large folders Authentication fixes for token rerfesh using lib.auth()
This commit is contained in:
Родитель
9e35e753ef
Коммит
3e9d2c95b7
|
@ -2,6 +2,10 @@
|
|||
|
||||
Release History
|
||||
===============
|
||||
0.0.6 (2017-03-15)
|
||||
------------------
|
||||
* Fix an issue with path caching that should drastically improve performance for download
|
||||
|
||||
0.0.5 (2017-03-01)
|
||||
------------------
|
||||
* Fix for downloader to ensure there is access to the source path before creating destination files
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<ProjectView>ProjectFiles</ProjectView>
|
||||
</PropertyGroup>
|
||||
</Project>
|
|
@ -6,7 +6,7 @@
|
|||
# license information.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
__version__ = "0.0.5"
|
||||
__version__ = "0.0.6"
|
||||
|
||||
from .core import AzureDLFileSystem
|
||||
from .multithread import ADLDownloader
|
||||
|
|
|
@ -111,8 +111,8 @@ class AzureDLFileSystem(object):
|
|||
""" List files at given path """
|
||||
path = AzureDLPath(path).trim()
|
||||
key = path.as_posix()
|
||||
if path not in self.dirs:
|
||||
out = self.azure.call('LISTSTATUS', path.as_posix())
|
||||
if key not in self.dirs:
|
||||
out = self.azure.call('LISTSTATUS', key)
|
||||
self.dirs[key] = out['FileStatuses']['FileStatus']
|
||||
for f in self.dirs[key]:
|
||||
f['name'] = (path / f['pathSuffix']).as_posix()
|
||||
|
@ -137,10 +137,12 @@ class AzureDLFileSystem(object):
|
|||
"""
|
||||
path = AzureDLPath(path).trim()
|
||||
root = path.parent
|
||||
myfile = [f for f in self._ls(root) if f['name'] == path.as_posix()]
|
||||
if len(myfile) == 1:
|
||||
return myfile[0]
|
||||
raise FileNotFoundError(path)
|
||||
path_as_posix = path.as_posix()
|
||||
for f in self._ls(root):
|
||||
if f['name'] == path_as_posix:
|
||||
return f
|
||||
else:
|
||||
raise FileNotFoundError(path)
|
||||
|
||||
def _walk(self, path):
|
||||
fi = list(self._ls(path))
|
||||
|
@ -149,21 +151,22 @@ class AzureDLFileSystem(object):
|
|||
fi.extend(self._ls(apath['name']))
|
||||
return [f for f in fi if f['type'] == 'FILE']
|
||||
|
||||
def walk(self, path=''):
|
||||
def walk(self, path='', details=False):
|
||||
""" Get all files below given path
|
||||
"""
|
||||
return [f['name'] for f in self._walk(path)]
|
||||
return [f if details else f['name'] for f in self._walk(path)]
|
||||
|
||||
def glob(self, path):
|
||||
def glob(self, path, details=False):
|
||||
"""
|
||||
Find files (not directories) by glob-matching.
|
||||
"""
|
||||
path = AzureDLPath(path).trim()
|
||||
path_as_posix = path.as_posix()
|
||||
prefix = path.globless_prefix
|
||||
allfiles = self.walk(prefix)
|
||||
allfiles = self.walk(prefix, details)
|
||||
if prefix == path:
|
||||
return allfiles
|
||||
return [f for f in allfiles if AzureDLPath(f).match(path.as_posix())]
|
||||
return [f for f in allfiles if AzureDLPath(f['name'] if details else f).match(path_as_posix)]
|
||||
|
||||
def du(self, path, total=False, deep=False):
|
||||
""" Bytes in keys at path """
|
||||
|
@ -233,8 +236,9 @@ class AzureDLFileSystem(object):
|
|||
parms['expireTime'] = int(expire_time)
|
||||
|
||||
self.azure.call('SETEXPIRY', path.as_posix(), is_extended=True, **parms)
|
||||
self.invalidate_cache(path.as_posix())
|
||||
|
||||
def _acl_call(self, action, path, acl_spec=None):
|
||||
def _acl_call(self, action, path, acl_spec=None, invalidate_cache=False):
|
||||
"""
|
||||
Helper method for ACL calls to reduce code repetition
|
||||
|
||||
|
@ -249,13 +253,21 @@ class AzureDLFileSystem(object):
|
|||
'[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,...'
|
||||
|
||||
Note that for remove acl entries the permission (rwx) portion is not required.
|
||||
invalidate_cache: bool
|
||||
optionally indicates that the cache of files should be invalidated after this operation
|
||||
This should always be done for set and remove operations, since the state of the file or folder has changed.
|
||||
"""
|
||||
parms = {}
|
||||
path = AzureDLPath(path).trim()
|
||||
posix_path = path.as_posix()
|
||||
if acl_spec:
|
||||
parms['aclSpec'] = acl_spec
|
||||
|
||||
return self.azure.call(action, path.as_posix(), **parms)
|
||||
to_return = self.azure.call(action, posix_path, **parms)
|
||||
if invalidate_cache:
|
||||
self.invalidate_cache(posix_path)
|
||||
|
||||
return to_return
|
||||
|
||||
def set_acl(self, path, acl_spec):
|
||||
"""
|
||||
|
@ -272,7 +284,8 @@ class AzureDLFileSystem(object):
|
|||
'[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,...'
|
||||
"""
|
||||
|
||||
self._acl_call('SETACL', path, acl_spec)
|
||||
self._acl_call('SETACL', path, acl_spec, invalidate_cache=True)
|
||||
|
||||
|
||||
def modify_acl_entries(self, path, acl_spec):
|
||||
"""
|
||||
|
@ -290,7 +303,8 @@ class AzureDLFileSystem(object):
|
|||
The ACL specification to use in modifying the ACL at the path in the format
|
||||
'[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,[default:]user|group|other:[entity id or UPN]:r|-w|-x|-,...'
|
||||
"""
|
||||
self._acl_call('MODIFYACLENTRIES', path, acl_spec)
|
||||
self._acl_call('MODIFYACLENTRIES', path, acl_spec, invalidate_cache=True)
|
||||
|
||||
|
||||
def remove_acl_entries(self, path, acl_spec):
|
||||
"""
|
||||
|
@ -309,7 +323,8 @@ class AzureDLFileSystem(object):
|
|||
The ACL specification to remove from the ACL at the path in the format (note that the permission portion is missing)
|
||||
'[default:]user|group|other:[entity id or UPN],[default:]user|group|other:[entity id or UPN],...'
|
||||
"""
|
||||
self._acl_call('REMOVEACLENTRIES', path, acl_spec)
|
||||
self._acl_call('REMOVEACLENTRIES', path, acl_spec, invalidate_cache=True)
|
||||
|
||||
|
||||
def get_acl_status(self, path):
|
||||
"""
|
||||
|
@ -334,7 +349,8 @@ class AzureDLFileSystem(object):
|
|||
path: str
|
||||
Location to remove the ACL.
|
||||
"""
|
||||
self._acl_call('REMOVEACL', path)
|
||||
self._acl_call('REMOVEACL', path, invalidate_cache=True)
|
||||
|
||||
|
||||
def remove_default_acl(self, path):
|
||||
"""
|
||||
|
@ -349,7 +365,8 @@ class AzureDLFileSystem(object):
|
|||
path: str
|
||||
Location to set the ACL on.
|
||||
"""
|
||||
self._acl_call('REMOVEDEFAULTACL', path)
|
||||
self._acl_call('REMOVEDEFAULTACL', path, invalidate_cache=True)
|
||||
|
||||
|
||||
def chown(self, path, owner=None, group=None):
|
||||
"""
|
||||
|
@ -375,6 +392,7 @@ class AzureDLFileSystem(object):
|
|||
parms['group'] = group
|
||||
path = AzureDLPath(path).trim()
|
||||
self.azure.call('SETOWNER', path.as_posix(), **parms)
|
||||
self.invalidate_cache(path.as_posix())
|
||||
|
||||
def exists(self, path):
|
||||
""" Does such a file/directory exist? """
|
||||
|
|
|
@ -46,34 +46,6 @@ MAX_CONTENT_LENGTH = 2**16
|
|||
# This ensures that no connections are prematurely evicted, which has negative performance implications.
|
||||
MAX_POOL_CONNECTIONS = 1024
|
||||
|
||||
def refresh_token(token, authority=None):
|
||||
""" Refresh an expired authorization token
|
||||
|
||||
Parameters
|
||||
----------
|
||||
token : dict
|
||||
Produced by `auth()` or `refresh_token`.
|
||||
authority: string
|
||||
The full URI of the authentication authority to authenticate against (such as https://login.microsoftonline.com/)
|
||||
"""
|
||||
if token.get('refresh', False) is False:
|
||||
raise ValueError("Token cannot be auto-refreshed.")
|
||||
|
||||
if not authority:
|
||||
authority = 'https://login.microsoftonline.com/'
|
||||
|
||||
context = adal.AuthenticationContext(authority +
|
||||
token['tenant'])
|
||||
out = context.acquire_token_with_refresh_token(token['refresh'],
|
||||
client_id=token['client'],
|
||||
resource=token['resource'])
|
||||
out.update({'access': out['accessToken'], 'refresh': out['refreshToken'],
|
||||
'time': time.time(), 'tenant': token['tenant'],
|
||||
'resource': token['resource'], 'client': token['client']})
|
||||
|
||||
return DataLakeCredential(out)
|
||||
|
||||
|
||||
def auth(tenant_id=None, username=None,
|
||||
password=None, client_id=default_client,
|
||||
client_secret=None, resource=DEFAULT_RESOURCE_ENDPOINT,
|
||||
|
@ -157,12 +129,37 @@ class DataLakeCredential(Authentication):
|
|||
def signed_session(self):
|
||||
session = super(DataLakeCredential, self).signed_session()
|
||||
if time.time() - self.token['time'] > self.token['expiresIn'] - 100:
|
||||
self.token = refresh_token(self.token)
|
||||
self.refresh_token()
|
||||
|
||||
scheme, token = self.token['tokenType'], self.token['access']
|
||||
header = "{} {}".format(scheme, token)
|
||||
session.headers['Authorization'] = header
|
||||
return session
|
||||
|
||||
def refresh_token(self, authority=None):
|
||||
""" Refresh an expired authorization token
|
||||
|
||||
Parameters
|
||||
----------
|
||||
authority: string
|
||||
The full URI of the authentication authority to authenticate against (such as https://login.microsoftonline.com/)
|
||||
"""
|
||||
if self.token.get('refresh', False) is False:
|
||||
raise ValueError("Token cannot be auto-refreshed.")
|
||||
|
||||
if not authority:
|
||||
authority = 'https://login.microsoftonline.com/'
|
||||
|
||||
context = adal.AuthenticationContext(authority +
|
||||
self.token['tenant'])
|
||||
out = context.acquire_token_with_refresh_token(self.token['refresh'],
|
||||
client_id=self.token['client'],
|
||||
resource=self.token['resource'])
|
||||
out.update({'access': out['accessToken'], 'refresh': out['refreshToken'],
|
||||
'time': time.time(), 'tenant': self.token['tenant'],
|
||||
'resource': self.token['resource'], 'client': self.token['client']})
|
||||
|
||||
self.token = out
|
||||
|
||||
class DatalakeRESTInterface:
|
||||
""" Call factory for webHDFS endpoints on ADLS
|
||||
|
|
|
@ -181,26 +181,28 @@ class ADLDownloader(object):
|
|||
""" Create set of parameters to loop over
|
||||
"""
|
||||
if "*" not in self.rpath:
|
||||
rfiles = self.client._adlfs.walk(self.rpath)
|
||||
rfiles = self.client._adlfs.walk(self.rpath, details=True)
|
||||
else:
|
||||
rfiles = self.client._adlfs.glob(self.rpath)
|
||||
rfiles = self.client._adlfs.glob(self.rpath, details=True)
|
||||
if len(rfiles) > 1:
|
||||
prefix = commonprefix(rfiles)
|
||||
lfiles = [os.path.join(self.lpath, os.path.relpath(f, prefix))
|
||||
for f in rfiles]
|
||||
elif rfiles:
|
||||
prefix = commonprefix([f['name'] for f in rfiles])
|
||||
file_pairs = [(os.path.join(self.lpath, os.path.relpath(f['name'], prefix)), f)
|
||||
for f in rfiles]
|
||||
elif len(rfiles) == 1:
|
||||
if os.path.exists(self.lpath) and os.path.isdir(self.lpath):
|
||||
lfiles = [os.path.join(self.lpath, os.path.basename(rfiles[0]))]
|
||||
file_pairs = [(os.path.join(self.lpath, os.path.basename(rfiles[0]['name'])),
|
||||
rfiles[0])]
|
||||
else:
|
||||
lfiles = [self.lpath]
|
||||
file_pairs = [(self.lpath, rfiles[0])]
|
||||
else:
|
||||
raise ValueError('No files to download')
|
||||
self.rfiles = rfiles
|
||||
self.lfiles = lfiles
|
||||
|
||||
for lfile, rfile in zip(lfiles, rfiles):
|
||||
fsize = self.client._adlfs.info(rfile)['length']
|
||||
self.client.submit(rfile, lfile, fsize)
|
||||
# this property is used for internal validation
|
||||
# and should not be referenced directly by public callers
|
||||
self._file_pairs = file_pairs
|
||||
|
||||
for lfile, rfile in file_pairs:
|
||||
self.client.submit(rfile['name'], lfile, rfile['length'])
|
||||
|
||||
def run(self, nthreads=None, monitor=True):
|
||||
""" Populate transfer queue and execute downloads
|
||||
|
@ -412,22 +414,24 @@ class ADLUploader(object):
|
|||
lfiles = [self.lpath]
|
||||
else:
|
||||
lfiles = glob.glob(self.lpath)
|
||||
|
||||
if len(lfiles) > 1:
|
||||
prefix = commonprefix(lfiles)
|
||||
rfiles = [self.rpath / AzureDLPath(f).relative_to(prefix)
|
||||
for f in lfiles]
|
||||
file_pairs = [(f, self.rpath / AzureDLPath(f).relative_to(prefix)) for f in lfiles]
|
||||
elif lfiles:
|
||||
if self.client._adlfs.exists(self.rpath) and \
|
||||
self.client._adlfs.info(self.rpath)['type'] == "DIRECTORY":
|
||||
rfiles = [self.rpath / AzureDLPath(lfiles[0]).name]
|
||||
file_pairs = [(lfiles[0], self.rpath / AzureDLPath(lfiles[0]).name)]
|
||||
else:
|
||||
rfiles = [self.rpath]
|
||||
file_pairs = [(lfiles[0], self.rpath)]
|
||||
else:
|
||||
raise ValueError('No files to upload')
|
||||
self.rfiles = rfiles
|
||||
self.lfiles = lfiles
|
||||
|
||||
for lfile, rfile in zip(lfiles, rfiles):
|
||||
# this property is used for internal validation
|
||||
# and should not be referenced directly by public callers
|
||||
self._file_pairs = file_pairs
|
||||
|
||||
for lfile, rfile in file_pairs:
|
||||
fsize = os.stat(lfile).st_size
|
||||
self.client.submit(lfile, rfile, fsize)
|
||||
|
||||
|
|
|
@ -261,40 +261,45 @@ class ADLTransferClient(object):
|
|||
'pending', 'running', 'finished', 'cancelled', 'errored')
|
||||
|
||||
# Create unique temporary directory for each file
|
||||
if self._chunked and self._unique_temporary:
|
||||
tmpdir = dst.parent / "{}.segments.{}".format(dst.name, self._unique_str)
|
||||
elif self._chunked:
|
||||
tmpdir = dst.parent / "{}.segments".format(dst.name)
|
||||
if self._chunked:
|
||||
if self._unique_temporary:
|
||||
filename = "{}.segments.{}".format(dst.name, self._unique_str)
|
||||
else:
|
||||
filename = "{}.segments".format(dst.name)
|
||||
tmpdir = dst.parent/filename
|
||||
else:
|
||||
tmpdir = None
|
||||
|
||||
offsets = list(range(0, length, self._chunksize))
|
||||
# TODO: might need xrange support for py2
|
||||
offsets = range(0, length, self._chunksize)
|
||||
|
||||
# in the case of empty files, ensure that the initial offset of 0 is properly added.
|
||||
if not offsets:
|
||||
if not length:
|
||||
offsets.append(0)
|
||||
offsets = [0]
|
||||
else:
|
||||
raise DatalakeIncompleteTransferException('Could not compute offsets for source: {}, with destination: {} and expected length: {}.'.format(src, dst, length))
|
||||
|
||||
tmpdir_and_offsets = tmpdir and len(offsets) > 1
|
||||
for offset in offsets:
|
||||
if tmpdir and len(offsets) > 1:
|
||||
if tmpdir_and_offsets:
|
||||
name = tmpdir / "{}_{}".format(dst.name, offset)
|
||||
else:
|
||||
name = dst
|
||||
cstates[(name, offset)] = 'pending'
|
||||
self._chunks[(name, offset)] = dict(
|
||||
parent=(src, dst),
|
||||
expected=min(length - offset, self._chunksize),
|
||||
actual=0,
|
||||
exception=None)
|
||||
self._chunks[(name, offset)] = {
|
||||
"parent": (src, dst),
|
||||
"expected": min(length - offset, self._chunksize),
|
||||
"actual": 0,
|
||||
"exception": None}
|
||||
logger.debug("Submitted %s, byte offset %d", name, offset)
|
||||
|
||||
self._fstates[(src, dst)] = 'pending'
|
||||
self._files[(src, dst)] = dict(
|
||||
length=length,
|
||||
cstates=cstates,
|
||||
exception=None)
|
||||
self._files[(src, dst)] = {
|
||||
"length": length,
|
||||
"cstates": cstates,
|
||||
"exception": None}
|
||||
|
||||
|
||||
def _submit(self, fn, *args, **kwargs):
|
||||
kwargs['shutdown_event'] = self._shutdown_event
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1894fa7e-fed5-11e6-abbc-645106422854]
|
||||
x-ms-client-request-id: [4b7fe60c-0e6a-11e7-a20f-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:27 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:15 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [c3f84589-bf3a-4a8e-990a-8f2008090dd0]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [9fd18ff2-8fc1-4964-ae32-e6d9918b0ab0]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,291 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1902c3f8-fed5-11e6-a4b5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410187927,"modificationTime":1488410187992,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [d57f1d52-3314-4442-b85c-c624ce7f05f1]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [19186ee8-fed5-11e6-9627-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&OP=OPEN&offset=0&api-version=2016-11-01&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:27 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: [ac51c401-1658-4e84-a819-3aeb594e9256]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [193ee2a8-fed5-11e6-a751-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410187927,"modificationTime":1488410187992,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [27674fd0-f5ff-419e-a6de-dfdd52706ee6]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1953ddde-fed5-11e6-9367-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [f500b49f-1833-491a-8e89-d79e59eb6749]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [72f73858-fed5-11e6-9cee-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:18:59 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: [7b0249c3-6c47-474c-a633-7fa392b91550]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [73662688-fed5-11e6-acc8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410339570,"modificationTime":1488410339632,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:18: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: [ed4e1283-5fbd-4aaf-804a-bff1d36a535a]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [737c0d38-fed5-11e6-a942-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&api-version=2016-11-01&offset=0&read=true&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:18: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: [013182aa-371f-45eb-adf6-78b842ad83d3]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [73a45576-fed5-11e6-9e68-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410339570,"modificationTime":1488410339632,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [78db85ae-b9d5-4b6a-a1ab-e2b96229ea6d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [73b9ff92-fed5-11e6-8490-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [c9893fa9-4533-4b9c-b5bc-23faa00e6d78]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e902d0dc-fed5-11e6-a7e0-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:16 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [6d802953-4f11-45e4-8f1e-480f27a1fee3]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e969ab28-fed5-11e6-ac83-645106422854]
|
||||
x-ms-client-request-id: [4c2102a8-0e6a-11e7-bd62-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410537693,"modificationTime":1488410537751,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123535970,"modificationTime":1490123536023,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:17 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [1616298d-85ef-4bef-a189-73e6f455d6c5]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [63ded668-3785-4c6d-b9e0-47fe53b7580a]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -325,51 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e97dcfa4-fed5-11e6-bbeb-645106422854]
|
||||
x-ms-client-request-id: [4c37ee34-0e6a-11e7-aa5c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&read=true&OP=OPEN&length=6&offset=0
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:17 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [ed0a3db5-be26-4fcd-bd48-1cd4f6a90ef2]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e9a9d474-fed5-11e6-a1b0-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410537693,"modificationTime":1488410537751,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [de67ab01-590b-4449-a3ac-0248c18e3535]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [11970459-1b25-4b0b-8f87-f62310265e4e]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -378,24 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e9bdd23a-fed5-11e6-97f9-645106422854]
|
||||
x-ms-client-request-id: [4c5f5be8-0e6a-11e7-9be7-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:17 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [dd3036c8-0ed2-48a8-b065-531670211916]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [5afcedb5-8bc1-4340-b2c6-93fbdfc35014]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fccd6bbe-fecc-11e6-943b-645106422854]
|
||||
x-ms-client-request-id: [4c85d978-0e6a-11e7-aa53-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 22:18:24 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:17 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [d8de854e-66bd-46ad-95cb-6a4bd8b4beaa]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [dcc0a52d-fb3f-48e2-b681-5ff551e297dc]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -34,137 +34,28 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fd40a008-fecc-11e6-91a2-645106422854]
|
||||
x-ms-client-request-id: [4d0c698a-0e6a-11e7-b7c8-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=foo&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"IllegalArgumentException","message":"SetOwner
|
||||
- Unknown UPN [fdce3fc0-992a-41e8-8a98-34813174b7d4][2017-03-01T14:18:26.8522790-08:00]","javaClassName":"java.lang.IllegalArgumentException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['223']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:18:26 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x8309CCCF']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [fdce3fc0-992a-41e8-8a98-34813174b7d4]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fdfac846-fecc-11e6-9f55-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488406705392,"modificationTime":1488406705450,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:18: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: [93374354-b179-4f64-9857-9a63600c6e5a]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fe42cde2-fecc-11e6-9a80-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&api-version=2016-11-01&recursive=False
|
||||
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: ['Wed, 01 Mar 2017 22:18: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: [04ac9e96-21bc-4ee2-8b41-9a2c95546032]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [5a4adccc-fecd-11e6-9b5d-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 22:21:01 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true&api-version=2016-11-01']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [8e73c873-b3a1-4890-add0-db402d53dddc]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [5aa44790-fecd-11e6-ac5e-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=6b190b7a-0acf-43c8-ab14-965f5aea6243&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&OP=SETOWNER&group=6b190b7a-0acf-43c8-ab14-965f5aea6243
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [69c99ac7-aecb-4321-841d-5d4da94376e4][2017-03-01T14:21:02.4392434-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
perform the requested operation.). [0738d726-d73e-47b4-8188-2764cb603eac][2017-03-21T12:12:18.0806574-07:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:21:01 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:18 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [69c99ac7-aecb-4321-841d-5d4da94376e4]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [0738d726-d73e-47b4-8188-2764cb603eac]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -172,247 +63,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [5ab781c6-fecd-11e6-ae10-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488406862174,"modificationTime":1488406862218,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:21: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: [5d566337-7153-4952-8cd5-b1efb270ac0c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [5af5743a-fecd-11e6-9c64-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=DELETE&recursive=False&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:21: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: [2f286bd9-04a3-4cf9-b64a-78f80898f9e6]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [273e85ae-fece-11e6-8cbf-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 22:26:45 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&overwrite=true&write=true&api-version=2016-11-01']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [fb8c3790-5608-4038-833b-c6608864951c]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [27b2a45c-fece-11e6-82a3-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&group=6b190b7a-0acf-43c8-ab14-965f5aea6243&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [efb268e4-6d99-4660-994c-bced0feb7b46][2017-03-01T14:26:46.4662009-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:26:45 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [efb268e4-6d99-4660-994c-bced0feb7b46]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [27c7b2e6-fece-11e6-a929-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488407206054,"modificationTime":1488407206107,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:26: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: [3d9363f1-859c-4d26-9ecb-64aa6a5bc839]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [28004f40-fece-11e6-90aa-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 22:26: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: [17db9db3-c5a4-4a59-ab14-f60761f256fb]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [0fc25adc-fed5-11e6-b76c-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?write=true&overwrite=true&api-version=2016-11-01&OP=CREATE
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:13 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?write=true&overwrite=true&api-version=2016-11-01&OP=CREATE']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [78355d16-d98f-4c56-8729-5fcc58aa8c31]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1034e218-fed5-11e6-adfa-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?group=6b190b7a-0acf-43c8-ab14-965f5aea6243&api-version=2016-11-01&OP=SETOWNER
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [29a88fdd-9d33-478e-a1ce-ad7ba4f87bf3][2017-03-01T15:16:13.5402980-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:13 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [29a88fdd-9d33-478e-a1ce-ad7ba4f87bf3]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [10497ba6-fed5-11e6-a40e-645106422854]
|
||||
x-ms-client-request-id: [4d21b4ba-0e6a-11e7-ad18-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410173140,"modificationTime":1488410173185,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123537722,"modificationTime":1490123537774,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:13 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [ba13b49c-508a-4b82-abb2-5df0859de5dc]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [03677013-ecf2-4651-b89d-20cbda7495a0]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -421,9 +90,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1070c5f8-fed5-11e6-9ab8-645106422854]
|
||||
x-ms-client-request-id: [4db9f3b4-0e6a-11e7-8438-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&OP=DELETE
|
||||
response:
|
||||
|
@ -432,346 +101,13 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:13 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [8ace6a6c-5872-4303-a06d-829bc17824b9]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [19790574-fed5-11e6-bc4e-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:28 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [486a7ed1-3af5-4ced-a1c7-90762dd475cd]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [19d47e94-fed5-11e6-8349-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?group=6b190b7a-0acf-43c8-ab14-965f5aea6243&OP=SETOWNER&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [493179c5-1889-4514-8797-c27fb3f1eca3][2017-03-01T15:16:29.6930834-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:29 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [493179c5-1889-4514-8797-c27fb3f1eca3]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [19e918fe-fed5-11e6-b8c3-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410189396,"modificationTime":1488410189462,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [79a37a1f-b9ec-4a1a-944e-518d4c46a9d0]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1a28ba0a-fed5-11e6-817b-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [06748571-0e28-4cf0-9545-3bc6e43be792]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [73e6dbc2-fed5-11e6-ba74-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:01 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: [98f239ac-71b5-4843-8ea7-7cd02d2f64a6]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [744a3180-fed5-11e6-af8a-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETOWNER&api-version=2016-11-01&group=6b190b7a-0acf-43c8-ab14-965f5aea6243
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [e9caa0f6-a41d-4340-87a5-ea3574a3ff38][2017-03-01T15:19:01.4474428-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:01 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [e9caa0f6-a41d-4340-87a5-ea3574a3ff38]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [745e692c-fed5-11e6-98ba-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410341146,"modificationTime":1488410341210,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [915d986d-0719-49a9-b0e7-edaa49e66af1]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [74a040a2-fed5-11e6-a886-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [a8cc1510-1ce1-430c-8114-d7314334e26a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [e9ea9a5c-fed5-11e6-9b62-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:18 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [5faf15d5-a180-47fe-8680-11018fec9c34]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ea6e713a-fed5-11e6-87c0-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&OP=SETOWNER&group=6b190b7a-0acf-43c8-ab14-965f5aea6243
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [f79c8c35-e6e2-4d3f-aeb9-407f4709c051][2017-03-01T15:22:19.6511238-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:18 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [f79c8c35-e6e2-4d3f-aeb9-407f4709c051]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ea8282ac-fed5-11e6-8cbc-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410539324,"modificationTime":1488410539402,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [12865e49-655e-43f6-a0fb-257f8eca0fd0]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eaec1a34-fed5-11e6-ade3-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [2b80fe3f-7f40-4089-a9c8-205a51f806b8]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [1a85a94a-7f4a-435f-9de2-c6f3e4efe75b]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1a52d70a-fed5-11e6-b83b-645106422854]
|
||||
x-ms-client-request-id: [4de03522-0e6a-11e7-9ddf-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:30 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:19 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [f4538075-c61f-42e5-a88d-54e1a72821a1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [5d4ce522-bc5e-48cd-ad1c-ea9c94107ef3]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1ace8380-fed5-11e6-b5fb-645106422854]
|
||||
x-ms-client-request-id: [4e65f410-0e6a-11e7-a877-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410190814,"modificationTime":1488410190877,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123540059,"modificationTime":1490123540149,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:31 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [9d50e834-8db1-439a-b137-6655a5dc6492]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a14b959b-1e3f-482b-bd65-60a41c189578]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -60,24 +60,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1ae52c5c-fed5-11e6-a296-645106422854]
|
||||
x-ms-client-request-id: [4e7c587e-0e6a-11e7-b956-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETPERMISSION&permission=0550&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?permission=0550&api-version=2016-11-01&OP=SETPERMISSION
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:31 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [1a2f892c-f423-4e3e-9f6f-74597dc2e603]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [8f44136d-e47a-4010-9055-e1a5dba206b7]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -85,51 +85,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1afc2240-fed5-11e6-9bf4-645106422854]
|
||||
x-ms-client-request-id: [4e92f48a-0e6a-11e7-91a8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410190814,"modificationTime":1488410190877,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123540059,"modificationTime":1490123540149,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16:31 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [b4ed2045-d84c-4401-abea-00627fa3747f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1b137b90-fed5-11e6-b7af-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410190814,"modificationTime":1488410190877,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [14809d2f-501a-49d9-9715-e7cd98e71003]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [ddf7870b-1a9e-468a-bfc6-29ef5de851e0]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -138,342 +112,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1b2814e8-fed5-11e6-a6ea-645106422854]
|
||||
x-ms-client-request-id: [4ea7fcc8-0e6a-11e7-a67a-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:16:31 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [76259bd4-1722-4f2f-bed2-023445afd0d7]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [74ca0fc6-fed5-11e6-84e3-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:02 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: [345cbeb3-6de4-4367-bd80-9bbe92926cbb]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [75370290-fed5-11e6-b6c3-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410342604,"modificationTime":1488410342750,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [c61552bb-7b14-41b0-9914-df2453c0062b]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [754b3a30-fed5-11e6-a6d9-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=SETPERMISSION&api-version=2016-11-01&permission=0550
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [fd1a60a9-def5-46cb-8478-396ed1c558dc]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7563b7f4-fed5-11e6-a98d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410342604,"modificationTime":1488410342750,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [fa1fd81e-36ba-4490-81fa-35a8b39d3e6d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7577b4ee-fed5-11e6-9a8c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410342604,"modificationTime":1488410342750,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [42a49e9c-6b66-4e14-aeb2-f8131cbe3ffc]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [758bb230-fed5-11e6-8adf-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [e3a38875-0116-4fc8-a09e-78fd14e2e40f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eb177052-fed5-11e6-90a1-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:21 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [275b339b-3caf-4a24-9857-ff3677eb51f4]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eb93a500-fed5-11e6-9053-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410541246,"modificationTime":1488410541307,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [683371df-7131-40da-a70f-4cbccb68ab06]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eba8a062-fed5-11e6-9981-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&permission=0550&OP=SETPERMISSION
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [d41a7da3-b3c3-4af8-81f4-799eae517015]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ebd3e288-fed5-11e6-82fc-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410541246,"modificationTime":1488410541307,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [7a2f6d43-bd08-4954-b123-c8f348716528]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ebe7dfb6-fed5-11e6-8e11-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410541246,"modificationTime":1488410541307,"replication":1,"permission":"550","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [bd4f6ea2-289d-48ab-9bda-e59e15476fa0]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ebfbdcfe-fed5-11e6-b2d2-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [74fc8d0f-1097-4b9d-bd5b-64021d7bbc48]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [b11c2d9f-09b2-4907-9b58-9d5ac4e00433]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,107 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1b50e5e2-fed5-11e6-82df-645106422854]
|
||||
x-ms-client-request-id: [4ecf57a4-0e6a-11e7-87e5-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:16:31 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:21 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&OP=CREATE&api-version=2016-11-01&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [b9bc10a3-1d03-4397-b1e0-824ca08d5ea7]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1baa1636-fed5-11e6-9d0c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410192490,"modificationTime":1488410192561,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [0520a08b-6885-4351-b429-793eafdcaa5e]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [1bbf1154-fed5-11e6-b7c5-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:16: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: [850ec1ad-a2e7-46bb-a181-b6b9bc573c01]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [75b4e50a-fed5-11e6-99e9-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:03 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&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: [730a815f-e856-42a7-a75b-c1ef71b55f1c]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [3121dd84-e0bb-4e0a-8d5a-67a18020b4e9]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -115,28 +34,28 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7628b59c-fed5-11e6-94b9-645106422854]
|
||||
x-ms-client-request-id: [4f5c3278-0e6a-11e7-b39c-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?owner=6b190b7a-0acf-43c8-ab14-965f5aea6243&OP=SETOWNER&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?owner=6b190b7a-0acf-43c8-ab14-965f5aea6243&api-version=2016-11-01&OP=SETOWNER
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [a2ca7507-9f02-41de-ac4e-088b8885186f][2017-03-01T15:19:04.5926690-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
perform the requested operation.). [8f13e534-3a32-4fb7-a968-b7923bd2bd37][2017-03-21T12:12:21.9763278-07:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:03 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:21 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [a2ca7507-9f02-41de-ac4e-088b8885186f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [8f13e534-3a32-4fb7-a968-b7923bd2bd37]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -144,136 +63,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [763e2874-fed5-11e6-8c77-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410344182,"modificationTime":1488410344261,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [dca60ab3-f927-4d5a-98bf-f93a0368849e]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7677aef4-fed5-11e6-8c83-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [c4f0390e-d9cd-4cc6-8eba-79455cdd1ed0]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ec25bf92-fed5-11e6-9400-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:23 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [fb153b57-f9ea-4d70-8351-745e20e70044]
|
||||
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]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ec8c5cb8-fed5-11e6-a1c5-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&owner=6b190b7a-0acf-43c8-ab14-965f5aea6243&OP=SETOWNER
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"AccessControlException","message":"Set
|
||||
Owner failed with 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.). [ef04c941-3ac1-4da6-8d94-40bccfe0e192][2017-03-01T15:22:23.2048036-08:00]","javaClassName":"org.apache.hadoop.security.AccessControlException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['404']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090AA2']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [ef04c941-3ac1-4da6-8d94-40bccfe0e192]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 403, message: Forbidden}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eca0a806-fed5-11e6-bd33-645106422854]
|
||||
x-ms-client-request-id: [4f723236-0e6a-11e7-b061-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410542934,"modificationTime":1488410543003,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123541548,"modificationTime":1490123541593,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:23 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:22 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [d06c39c2-586c-46e8-8c68-8cea56990af7]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2eff9107-5411-4963-b2d5-92ca86cdec27]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -282,24 +90,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ed0b8b3e-fed5-11e6-8baa-645106422854]
|
||||
x-ms-client-request-id: [4fe1a3a4-0e6a-11e7-acd6-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:24 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:22 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [4dc9006b-e5eb-4caf-beef-3dd73400f107]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a156211a-a88f-4170-a8da-7628bca6ebf6]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -5,50 +5,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [76a06cd2-fed5-11e6-9933-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=GETCONTENTSUMMARY&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"ContentSummary":{"directoryCount":9,"fileCount":55,"length":158376919044,"quota":-1,"spaceConsumed":158376919044,"spaceQuota":-1}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['132']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [45659cba-8c97-40fc-bca9-09860da959d0]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ed34e542-fed5-11e6-a428-645106422854]
|
||||
x-ms-client-request-id: [5007f96e-0e6a-11e7-b935-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=GETCONTENTSUMMARY
|
||||
response:
|
||||
body: {string: '{"ContentSummary":{"directoryCount":9,"fileCount":55,"length":158376919044,"quota":-1,"spaceConsumed":158376919044,"spaceQuota":-1}}'}
|
||||
body: {string: '{"ContentSummary":{"directoryCount":5,"fileCount":0,"length":0,"quota":-1,"spaceConsumed":0,"spaceQuota":-1}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['132']
|
||||
Content-Length: ['109']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:24 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [96465a2a-d2d4-4554-8812-3126c781a009]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [4b916a80-5177-4d33-b0e1-46b716232e44]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [770f48b4-fed5-11e6-88ff-645106422854]
|
||||
x-ms-client-request-id: [507e8a5c-0e6a-11e7-8157-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:06 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:24 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [64a19905-6488-4f88-8c4e-f97a7ff63251]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [165b1bea-94d6-4de0-87b8-d06fe8b80b38]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,132 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7778b8e6-fed5-11e6-890b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1488410346448,"modificationTime":1488410346545,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['322']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:06 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [a3a07850-360e-46df-920a-0134f6171821]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [77b5271e-fed5-11e6-9472-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410346448,"modificationTime":1488410346545,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:06 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [9f2acacd-ea9e-4a54-8455-c03bc4db407a]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [77dde430-fed5-11e6-927b-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:06 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [e2e133f2-1ce5-4217-b642-1ef6c329deee]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eda3117e-fed5-11e6-8f20-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:24 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [07f2d7f7-d8cb-48a0-a601-0a9c3edc6846]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ee0b0de4-fed5-11e6-96b4-645106422854]
|
||||
x-ms-client-request-id: [511cbed2-0e6a-11e7-98d8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1488410545431,"modificationTime":1488410545509,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1490123544519,"modificationTime":1490123544573,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['322']
|
||||
Content-Length: ['323']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:24 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:24 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [abaf5549-b449-4a30-9e94-71036fc33055]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [c3f90511-62e5-4551-b64b-8b020110aae3]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -166,25 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ee1f8050-fed5-11e6-9ce5-645106422854]
|
||||
x-ms-client-request-id: [51427052-0e6a-11e7-8966-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410545431,"modificationTime":1488410545509,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123544519,"modificationTime":1490123544573,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:24 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [746dadb7-ae3f-4512-b3c5-f5f0b29c5a5d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e9ade038-ce14-438e-8b77-5c4af93f1f53]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -193,24 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ee344048-fed5-11e6-b292-645106422854]
|
||||
x-ms-client-request-id: [516b63b4-0e6a-11e7-8ed5-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:25 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [14c436d0-d94d-49b1-bbdc-a906c8c85994]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2a2bf361-754f-4095-849c-319dad71f825]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [78100442-fed5-11e6-bc5a-645106422854]
|
||||
x-ms-client-request-id: [5191c40c-0e6a-11e7-a73a-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:25 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [1fdc5326-5ec3-424a-9d52-abf87bc892be]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [604ce7e3-98b8-4a05-aebb-b339cf7dda2b]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,51 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7874a61c-fed5-11e6-8f35-645106422854]
|
||||
x-ms-client-request-id: [51fc9736-0e6a-11e7-bc29-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410348135,"modificationTime":1488410348209,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123546111,"modificationTime":1490123546164,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [d8c35519-2e7a-4788-ae5d-706b350a5675]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [788a290a-fed5-11e6-9368-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410348135,"modificationTime":1488410348209,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [3aa219e2-9ad8-4e77-a59a-6d77270fbdca]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [37a61d2a-336f-4c1d-b346-f4644daa4fd7]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -86,131 +60,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [789f8730-fed5-11e6-b5e7-645106422854]
|
||||
x-ms-client-request-id: [5211e2c8-0e6a-11e7-a6be-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [13e572ef-2709-475d-ad28-f3ae2f09cb73]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ee5b161e-fed5-11e6-92b0-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:26 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [8d0b0481-3b75-4081-a4b2-9d0011e679a3]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eec29de4-fed5-11e6-ba16-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410546650,"modificationTime":1488410546706,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [5015a242-fcbd-47a5-84ba-837613b3fc0a]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eed771ac-fed5-11e6-b9a9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410546650,"modificationTime":1488410546706,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [46ebf62e-4a2d-45ea-9b88-a054aa51c5b4]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [eeec1f12-fed5-11e6-bdef-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [f311bf0d-3bf0-4fe0-8f81-028eed9a48b8]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [ec0d4094-0582-4187-b33f-cb7980c11208]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [78cab51e-fed5-11e6-9ba0-645106422854]
|
||||
x-ms-client-request-id: [523e2864-0e6a-11e7-a25d-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:26 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [15942d43-78da-4836-873d-5b1e2e65e6d1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [3762b45f-e6ce-4b58-b55b-116652e188ea]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,210 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [79293c3a-fed5-11e6-aa15-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410349320,"modificationTime":1488410349394,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [b8bbbe95-5fd2-42ee-9dc2-0d9fd3da84ff]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [793ec0d2-fed5-11e6-a8ee-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1488410349320,"modificationTime":1488410349394,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['322']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [44293984-f6e4-4026-bc61-c0e993f25549]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7953a876-fed5-11e6-8631-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410349320,"modificationTime":1488410349394,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [49bc99fb-0748-43c8-ab1b-a1cf516c13d6]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7969536c-fed5-11e6-8bff-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&api-version=2016-11-01&offset=0&read=true&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:10 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: [f0088d9b-d7ab-4b4f-aa09-65c93b428931]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [79c55622-fed5-11e6-9d53-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410349320,"modificationTime":1488410349394,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [93915996-8726-4695-9331-3b1e2e35523c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [79dac6d0-fed5-11e6-8526-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [ba74217b-3082-4aab-892c-380a9c9dde99]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [ef168a80-fed5-11e6-8daa-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:27 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [f7c2029f-f977-4a25-b588-e31ec819e731]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [efa596dc-fed5-11e6-b76e-645106422854]
|
||||
x-ms-client-request-id: [5297cca8-0e6a-11e7-bb8e-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410548120,"modificationTime":1488410548188,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123547113,"modificationTime":1490123547164,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:27 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [89ff7edf-2002-4928-b955-6dcc402f9acb]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [266f878b-764d-4c2e-98bc-cc9e10e9cff1]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -244,25 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [efbded78-fed5-11e6-8ae8-645106422854]
|
||||
x-ms-client-request-id: [52aebb98-0e6a-11e7-beb4-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1488410548120,"modificationTime":1488410548188,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1490123547113,"modificationTime":1490123547164,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['322']
|
||||
Content-Length: ['323']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:27 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [640283ce-e63a-4004-adaf-4387cdbc6212]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [7707a262-e919-4fc7-bb78-e86d82387a88]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -270,77 +85,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [efd273fe-fed5-11e6-bba2-645106422854]
|
||||
x-ms-client-request-id: [52c38b86-0e6a-11e7-99b8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410548120,"modificationTime":1488410548188,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [73c2836c-e792-4eba-8207-bd83b9162b70]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [efe76eac-fed5-11e6-8b79-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&read=true&OP=OPEN&length=6&offset=0
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:28 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:28 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: [fea8d886-412c-4511-889e-414a1cf4d0ec]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f0528cc6-fed5-11e6-a767-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410548120,"modificationTime":1488410548188,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [7799a131-5bea-4742-801c-5373f9cd7cd5]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [537758c1-69ca-4573-8f5b-7e7ccd3f7c26]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -349,24 +112,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f0695bc0-fed5-11e6-87ca-645106422854]
|
||||
x-ms-client-request-id: [534d7de8-0e6a-11e7-980b-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:29 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [8dee8c40-f81e-4ad3-a426-dc1be645522d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e305071a-1323-441f-87d5-58554aea2d10]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7a056c36-fed5-11e6-adad-645106422854]
|
||||
x-ms-client-request-id: [53765e02-0e6a-11e7-9ebc-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:28 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [d6148d1e-9a86-4156-8367-8399f219075f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e1911c03-09e3-41eb-917b-89f147ab3c71]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7a6602de-fed5-11e6-ba3b-645106422854]
|
||||
x-ms-client-request-id: [53eecc9c-0e6a-11e7-884b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410351394,"modificationTime":1488410351468,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123549326,"modificationTime":1490123549383,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [11fdd01a-190d-4182-8cc6-61a886c1675f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [18965065-e719-41ca-b278-eb1045298edf]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -59,51 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7a7b388a-fed5-11e6-9b17-645106422854]
|
||||
x-ms-client-request-id: [540530b0-0e6a-11e7-a695-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&api-version=2016-11-01&offset=0&read=true&length=6
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:29 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: [9b5480c9-17bd-4888-acc0-7cc627063cb6]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7a98231a-fed5-11e6-bd41-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410351394,"modificationTime":1488410351468,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [1bf034aa-e622-4ab7-86f9-c90b7026311f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [c0079151-28a6-4d0c-8933-7a8cffe44cd6]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -112,157 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7aacf6f4-fed5-11e6-b43b-645106422854]
|
||||
x-ms-client-request-id: [542eaa00-0e6a-11e7-9a8d-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [2b2970c4-37a5-4da3-91bf-06b8bef196ae]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f09463d2-fed5-11e6-85e2-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:29 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [12ad73fe-4a5f-4bae-a50a-ed373996bc15]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f100aa6c-fed5-11e6-99c7-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410550374,"modificationTime":1488410550449,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [91f190e8-c205-42e9-9f09-768aad39fc0d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f1166876-fed5-11e6-b26e-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:30 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: [480d851e-d99f-497b-88f9-e6ab22c6ddc4]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f132b66e-fed5-11e6-ad07-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410550374,"modificationTime":1488410550449,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [debe8faf-f39e-4ebe-af07-7337e4ba05fb]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f1483a90-fed5-11e6-999e-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [f3e215a9-d710-4e90-935d-ac6a20364a84]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [fd6d4c79-6cd1-4494-b64c-a46e5025f162]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7ad4a358-fed5-11e6-999a-645106422854]
|
||||
x-ms-client-request-id: [5458946e-0e6a-11e7-a6b1-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:30 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [990acaf8-a690-4dbc-bb55-09ca5d23076b]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a48a3829-16b2-4dec-809f-065984421451]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7b339fae-fed5-11e6-9861-645106422854]
|
||||
x-ms-client-request-id: [54eced64-0e6a-11e7-9853-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410352769,"modificationTime":1488410352829,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123550995,"modificationTime":1490123551035,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:12 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [aa151395-abbd-426e-95b7-1e48d2d33224]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [1f3e853f-74fd-43aa-b220-8a60189d8086]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -59,51 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7b498536-fed5-11e6-9282-645106422854]
|
||||
x-ms-client-request-id: [550487e6-0e6a-11e7-bae5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=OPEN&api-version=2016-11-01&offset=0&read=true&length=6
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:12 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:30 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: [b1ad2c26-32d4-4798-bb94-0ef7eaa20c8f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7b7269c2-fed5-11e6-9054-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410352769,"modificationTime":1488410352829,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [2d109bd1-7f5f-415d-bee1-4796487f157d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a6691465-e453-42dc-bb18-4eebc8ea403c]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -112,157 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7b8814b4-fed5-11e6-9bf1-645106422854]
|
||||
x-ms-client-request-id: [5520450c-0e6a-11e7-b026-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:12 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [c6ada345-22ba-448d-8497-e66b5d19e4d1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f172449a-fed5-11e6-a916-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:31 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [27a8f609-d4e0-42c3-96b3-c9863418eb0d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f1d2b3b8-fed5-11e6-8df9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410551771,"modificationTime":1488410551831,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [424043eb-8791-4004-b61d-fd9197ed8fdc]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f1e7884c-fed5-11e6-9f0d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [d508c7a5-a7b7-400e-8385-26ffdf737e4d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f203fd52-fed5-11e6-9ebc-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410551771,"modificationTime":1488410551831,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [aa3675f1-0e09-4bb2-89af-963a66ecdd5c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f218cff4-fed5-11e6-95f2-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [0a502488-be33-4d2c-b23c-f0ed44247774]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [4cd36807-6276-486c-ab22-96d998f12f71]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7bb0499c-fed5-11e6-b914-645106422854]
|
||||
x-ms-client-request-id: [5544f298-0e6a-11e7-a1e0-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:19:14 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:31 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [600940a3-e758-4ffc-b73b-504e3b92e6b0]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [f4319a13-b7de-4886-90f3-f40eb2a56f47]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,51 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7c0c86e6-fed5-11e6-8a49-645106422854]
|
||||
x-ms-client-request-id: [55babf9e-0e6a-11e7-9232-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410354174,"modificationTime":1488410354227,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123552374,"modificationTime":1490123552426,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19:14 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [99e2506e-e3b0-4e16-82ad-5221b7d99d6c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7c234276-fed5-11e6-bf86-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410354174,"modificationTime":1488410354227,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:19: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: [b8037679-9cb9-41b7-9e82-9775ac43f8f3]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2e6618e7-7d8f-4690-bf79-a80edd6cabc2]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -86,131 +60,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7c38a01c-fed5-11e6-9965-645106422854]
|
||||
x-ms-client-request-id: [55d059e6-0e6a-11e7-9baf-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:19:14 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [d428d611-4afa-4309-b0db-d5b562bea93e]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f2400a1e-fed5-11e6-95b9-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:32 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [1403dc96-7ded-4cc1-9b0a-4622c76bdd81]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f2b3a002-fed5-11e6-90ba-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410553151,"modificationTime":1488410553224,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [bba7ad24-4258-41b0-b75d-ec6c1b3fc62f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f2c7c43e-fed5-11e6-91aa-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410553151,"modificationTime":1488410553224,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [e12b4715-6097-4080-8063-9e45ac75424b]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f2dbc0c0-fed5-11e6-822e-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [34fb91ef-cac8-4409-a55a-2558325a62c9]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [dd1f0ad0-5295-4720-aa0a-57a3f3265532]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3058f30-fed5-11e6-ac5a-645106422854]
|
||||
x-ms-client-request-id: [5602882e-0e6a-11e7-9ae8-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:32 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [1a2076b9-8493-4fd3-8c98-548a4c2ce50d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [5a047f08-c296-42a7-8cd0-1f2c704104c0]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,51 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f368d2b8-fed5-11e6-bbb8-645106422854]
|
||||
x-ms-client-request-id: [566e4914-0e6a-11e7-ad73-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410554449,"modificationTime":1488410554519,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123553437,"modificationTime":1490123553540,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [7f223e4f-0d7b-438c-bdaf-e3d8ca332ecc]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f37d1c92-fed5-11e6-953d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410554449,"modificationTime":1488410554519,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [225b36f8-72ee-48fe-bf6b-f9c93aa42060]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [1c8f3deb-88c3-4594-974c-122fdc18f107]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -86,24 +60,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3912e1c-fed5-11e6-a9b5-645106422854]
|
||||
x-ms-client-request-id: [56839598-0e6a-11e7-8c0c-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:34 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [2d02874a-d10b-42ed-a834-7ba888fe98e3]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [983ac6c0-ba1f-41de-ab17-0c3de28b7e69]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3b8039a-fed5-11e6-9a20-645106422854]
|
||||
x-ms-client-request-id: [56abb37e-0e6a-11e7-8784-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:35 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:34 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [6b42b6fb-043d-400a-a772-8e08bf73e24a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [ed43018e-9e4b-4332-9a96-4db1d9a10391]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,51 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f440bbb4-fed5-11e6-b299-645106422854]
|
||||
x-ms-client-request-id: [572c91dc-0e6a-11e7-b2c4-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410555624,"modificationTime":1488410555697,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123554767,"modificationTime":1490123554800,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:35 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [382d3b73-9e1d-432c-9e96-491ea22afa7d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f45701c8-fed5-11e6-91d5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410555624,"modificationTime":1488410555697,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [015e8222-9660-442e-bf13-359e4cff6774]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [27eeeac7-f741-475d-9f2c-e87090782678]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -86,24 +60,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f46c9a0a-fed5-11e6-aaf1-645106422854]
|
||||
x-ms-client-request-id: [5743e406-0e6a-11e7-bcc2-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:36 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [24d7bfd9-4cca-4a3d-bf95-41641daf2626]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [bb1041c2-e9b7-4df1-8658-be9ede7f3862]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f495b9ec-fed5-11e6-b227-645106422854]
|
||||
x-ms-client-request-id: [5770ae9a-0e6a-11e7-a91f-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=MKDIRS
|
||||
response:
|
||||
|
@ -17,14 +17,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:36 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [0c085f19-696d-4ad6-bb26-4acabba2f718]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [ebe932a3-17f4-472d-883e-a5f94893896a]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,9 +33,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4dd49dc-fed5-11e6-b693-645106422854]
|
||||
x-ms-client-request-id: [57c97734-0e6a-11e7-9193-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&OP=MKDIRS
|
||||
response:
|
||||
|
@ -44,14 +44,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:36 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [83857e3f-bb6c-4eb2-8ea9-828d74b17aba]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [eb55e424-fb02-4b95-8113-b82489ec726b]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -59,25 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4f20a26-fed5-11e6-ba36-645106422854]
|
||||
x-ms-client-request-id: [57de5a2e-0e6a-11e7-9fc3-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410557161,"modificationTime":1488410557161,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1490123556106,"modificationTime":1490123556106,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:36 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [d9a84c32-4b6d-4b32-bd2b-ef8dc5c72f5a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [c887b37f-4432-4fc9-8329-797cd666abac]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -85,35 +85,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f5056b5e-fed5-11e6-a26c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410557161,"modificationTime":1488410557161,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [0355b330-cd3b-48d8-bfae-999c72a653bb]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f5187ea6-fed5-11e6-b985-645106422854]
|
||||
x-ms-client-request-id: [57f2cfd8-0e6a-11e7-a87b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
|
@ -122,66 +96,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['34']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:36 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [df02bdfe-6e55-4903-9d0c-964c68829434]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f52bcb64-fed5-11e6-a026-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410557161,"modificationTime":1488410557161,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [ace3abab-fe82-4581-84cf-df19593d2ca9]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f53ef29a-fed5-11e6-9dbe-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410557161,"modificationTime":1488410557161,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [2c44756c-58e2-4383-bc34-72d4e7ec41df]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [8ff52e6e-70bd-4736-87a6-390266cc2628]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -190,25 +112,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f5523f06-fed5-11e6-a549-645106422854]
|
||||
x-ms-client-request-id: [5807173a-0e6a-11e7-8db5-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:37 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [3f46c2dd-59ba-4afd-b8d0-3cfbfb352c79]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a040731c-66be-4cfb-ae7d-c6b485203e77]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -216,9 +138,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f5694992-fed5-11e6-b564-645106422854]
|
||||
x-ms-client-request-id: [58224578-0e6a-11e7-8142-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
|
@ -227,14 +149,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['34']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:37 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [2865535b-cfa2-4744-8ddf-c658a8bdd9ed]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e555a83b-ffc5-438a-9057-8f4b378340d1]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -242,25 +164,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f57c83b8-fed5-11e6-ac76-645106422854]
|
||||
x-ms-client-request-id: [583671c2-0e6a-11e7-bc31-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488407206074,"modificationTime":1488410557938,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1490123535989,"modificationTime":1490123556530,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:37 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [6c90ca3a-7076-4f75-a915-6a37d8af82c1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2693bb78-a053-4750-a3bc-d785bf87fbe6]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -269,24 +191,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f58fe4f0-fed5-11e6-9d1e-645106422854]
|
||||
x-ms-client-request-id: [584aae30-0e6a-11e7-9208-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&recursive=True&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:37 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [efb74123-04c9-420c-bedc-9ca7333c941c]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [3a459628-4f8a-4ec9-a2e4-e16f8e6b5b2e]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f5b1c466-fed5-11e6-acbf-645106422854]
|
||||
x-ms-client-request-id: [586ed2ca-0e6a-11e7-8ca2-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:38 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:36 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [ff675163-334f-45f9-a5be-7b1eb8419908]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [da1f5b47-c9f7-4c20-b48b-1bb226bbb6f4]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -34,25 +34,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f61bd154-fed5-11e6-adc0-645106422854]
|
||||
x-ms-client-request-id: [58e496c8-0e6a-11e7-8eac-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&destination=azure_test_dir%2Ffoo%2Ffoo&OP=RENAME
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?destination=azure_test_dir%2Ffoo%2Ffoo&api-version=2016-11-01&OP=RENAME
|
||||
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: ['Wed, 01 Mar 2017 23:22:38 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [cfea8e3c-75d0-4e9f-9345-99354448ca7b]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [48de74ca-7033-4422-b45a-f1f4ff483fcd]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -60,25 +60,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f6351212-fed5-11e6-b147-645106422854]
|
||||
x-ms-client-request-id: [58fcf91c-0e6a-11e7-b37b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1488410558931,"modificationTime":1488410559005,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1490123557687,"modificationTime":1490123557736,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:39 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [0472138b-95ba-4641-89ed-02641fcf662c]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [9f11c8d9-c0d9-4ec8-9567-a0830e185adb]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -87,25 +87,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f651d4c6-fed5-11e6-9e42-645106422854]
|
||||
x-ms-client-request-id: [5911170a-0e6a-11e7-b00e-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&destination=azure_test_dir%2Ffoo%2Fbar&OP=RENAME
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?destination=azure_test_dir%2Ffoo%2Fbar&api-version=2016-11-01&OP=RENAME
|
||||
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: ['Wed, 01 Mar 2017 23:22:39 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [e2cd2220-e0ef-43c0-8756-8c7f9e415495]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e7e48f88-4818-42a8-bc27-0114bcf3cbb8]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -113,51 +113,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f66bed2c-fed5-11e6-b4e3-645106422854]
|
||||
x-ms-client-request-id: [5927da1e-0e6a-11e7-8efc-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410558931,"modificationTime":1488410559005,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123557687,"modificationTime":1490123557736,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:39 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [a26ac640-7d73-4b35-8792-96798fc297ec]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f68099b0-fed5-11e6-b0a3-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410558931,"modificationTime":1488410559005,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [388823e5-343a-4f15-9356-e6fa632a1dd1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [5ef08858-667e-4eac-b58d-96f480b1b397]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -166,24 +140,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f69533cc-fed5-11e6-9b91-645106422854]
|
||||
x-ms-client-request-id: [593bfe92-0e6a-11e7-a6ef-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:39 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [52a75c85-2aef-45f5-ac8c-59fdb79038a0]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [68fe2443-f86a-4c7e-84a5-9c231dcfe22c]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f6bc69ee-fed5-11e6-8b32-645106422854]
|
||||
x-ms-client-request-id: [59663788-0e6a-11e7-80fa-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=MKDIRS
|
||||
response:
|
||||
|
@ -17,14 +17,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:40 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [20c81163-019d-4d8a-9054-9a9ee5077a58]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [814a3ac0-ecd4-4430-8e27-49d97ed9061f]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -32,9 +32,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f707dd88-fed5-11e6-a4b5-645106422854]
|
||||
x-ms-client-request-id: [59c5bb64-0e6a-11e7-b4d9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
|
@ -43,40 +43,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['34']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:40 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [b6dd8681-c302-4479-b214-5d46f944e48c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f71ced9c-fed5-11e6-beae-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22: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: [8b7eada4-6d7a-4a00-af0a-3655909a030b]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [8d2defc0-5a96-4fc5-a376-f792875b9606]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: '123456'
|
||||
|
@ -85,26 +59,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f731e8b0-fed5-11e6-a7e9-645106422854]
|
||||
x-ms-client-request-id: [59dc1d34-0e6a-11e7-b680-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:41 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:39 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [3967fe33-e322-49db-abe4-17259d9c15fc]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [da1b3e79-14c4-44e3-904b-338179a1672e]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -112,25 +86,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f82710b8-fed5-11e6-9459-645106422854]
|
||||
x-ms-client-request-id: [5a65e892-0e6a-11e7-ac1e-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1488410561449,"modificationTime":1488410562427,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1490123560131,"modificationTime":1490123560198,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:42 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [a606282e-1525-4d76-be0b-b69b77256d7d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [ae48fd97-b04b-4bee-bc6d-e77450dd3582]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -138,51 +112,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f83e9138-fed5-11e6-8b1a-645106422854]
|
||||
x-ms-client-request-id: [5a7d1a10-0e6a-11e7-aa25-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&read=true&OP=OPEN&length=6&offset=0
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:42 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [8c77ff54-421c-4c76-a269-cb68b3d73622]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f85f10ca-fed5-11e6-a94d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1488410561449,"modificationTime":1488410562427,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [669c47db-cf2d-4fcb-a7fd-e11cce5fdf73]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [5677ea52-6e47-40ce-94db-a41287114449]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -191,25 +139,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f874bb86-fed5-11e6-b059-645106422854]
|
||||
x-ms-client-request-id: [5aa2f3be-0e6a-11e7-baec-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:42 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [84d90c0c-d3a8-43dc-ba0f-36d5574f6b6c]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [159dca64-e05b-428d-bbe4-880ea435f5fd]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -217,25 +165,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f8958a28-fed5-11e6-914b-645106422854]
|
||||
x-ms-client-request-id: [5abf4b9c-0e6a-11e7-89b5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410558952,"modificationTime":1488410563220,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1490123557706,"modificationTime":1490123560906,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:42 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [1b3a8303-8cbe-46ce-9506-705fbc3bd93f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a6496a5b-0a75-4767-9aeb-3dfd4a73160e]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -244,24 +192,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f8aa5df0-fed5-11e6-bd85-645106422854]
|
||||
x-ms-client-request-id: [5ad3de54-0e6a-11e7-9ffe-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&recursive=True&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:43 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [89960b55-9f69-457d-9ee0-43a713f4f2a9]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2e0f658a-2081-4a83-9f48-f374a9421984]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f8d1e424-fed5-11e6-b652-645106422854]
|
||||
x-ms-client-request-id: [5af67430-0e6a-11e7-8065-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:43 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:41 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [cc83a7e2-34be-4788-8e0b-5ca7175a23ec]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [040e9303-bf0a-4192-a88e-380f1fee29ef]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f93932b8-fed5-11e6-a93f-645106422854]
|
||||
x-ms-client-request-id: [5b6b0a10-0e6a-11e7-bba4-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410564199,"modificationTime":1488410564271,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123561856,"modificationTime":1490123561988,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:43 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [f361c03c-f1a5-41dc-a321-c2a2e0097802]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [000b44d8-7eef-4ac0-af97-fe93b8246a57]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -59,77 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f94eb690-fed5-11e6-b254-645106422854]
|
||||
x-ms-client-request-id: [5b80e1f8-0e6a-11e7-8b7c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410564199,"modificationTime":1488410564271,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [6fc6f2c5-5014-4a75-a819-8df8a8d31cd6]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f9767640-fed5-11e6-8a75-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&read=true&OP=OPEN&length=6&offset=0
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=0&api-version=2016-11-01&OP=OPEN&length=6
|
||||
response:
|
||||
body: {string: '123456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:44 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:41 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: [928f6726-bf08-4cf7-aa5b-af4b567f2b4f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f999a31a-fed5-11e6-8833-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410564199,"modificationTime":1488410564271,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [283ba7ce-f6e4-4263-a12d-aabfbc90241a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [177b66be-e2c8-4b28-b54d-4a0feb0f8742]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -138,24 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f9af2606-fed5-11e6-917f-645106422854]
|
||||
x-ms-client-request-id: [5bb6276e-0e6a-11e7-a5ae-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:44 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [30d94fa6-a7d6-4a3a-b974-15fb79939495]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [d0371cec-998b-4fb1-880b-f59375ad9790]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['6']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f9d7487a-fed5-11e6-9143-645106422854]
|
||||
x-ms-client-request-id: [5bdf417a-0e6a-11e7-89b8-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:45 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:42 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [327445ed-ceb0-46aa-887b-31ebafd9340d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [fe7673b5-8dec-432f-8127-47e4c2054359]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fa3545e4-fed5-11e6-94e4-645106422854]
|
||||
x-ms-client-request-id: [5c608dae-0e6a-11e7-9361-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410565840,"modificationTime":1488410565907,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1490123563512,"modificationTime":1490123563570,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:45 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [89dd357b-ea70-4fb5-bc51-5c90051f9b77]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [af5f5309-1ec4-4992-bfcd-adc10f13b0c1]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -59,77 +59,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fa4a410c-fed5-11e6-b098-645106422854]
|
||||
x-ms-client-request-id: [5c77c558-0e6a-11e7-a942-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410565840,"modificationTime":1488410565907,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [d9912b05-a852-4f79-9be9-493b06601f61]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fa5fd874-fed5-11e6-a56d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&read=true&OP=OPEN&length=3&offset=3
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?read=true&offset=3&api-version=2016-11-01&OP=OPEN&length=3
|
||||
response:
|
||||
body: {string: '456'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Type: [application/octet-stream]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:45 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:43 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: [a82d8972-074e-468f-b938-59d22b5da95d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fa7bb1d8-fed5-11e6-9b4b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":6,"pathSuffix":"bar","type":"FILE","blockSize":268435456,"accessTime":1488410565840,"modificationTime":1488410565907,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [e6886546-4076-44bd-861e-fc0d3e5947a4]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [6786a08f-0ce8-4a1a-b5ee-c51db7f65943]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -138,24 +86,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fa916eee-fed5-11e6-b391-645106422854]
|
||||
x-ms-client-request-id: [5cbaf508-0e6a-11e7-99b1-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/bar?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:45 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [120b2ff8-baa5-4e3b-9379-b274a9387481]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [b930544b-751c-423f-a501-18ddf95fedb8]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fab8e180-fed5-11e6-975e-645106422854]
|
||||
x-ms-client-request-id: [5cf64d40-0e6a-11e7-b085-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=MKDIRS
|
||||
response:
|
||||
|
@ -17,14 +17,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:46 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [7439af51-97f7-46ae-ae0f-200921521ecb]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [3f358b82-d5a0-41a5-b4bb-1a2e2b90a489]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,26 +33,26 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [faff3a3e-fed5-11e6-bc0c-645106422854]
|
||||
x-ms-client-request-id: [5d709e0c-0e6a-11e7-ad6b-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:22:47 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12:45 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [101ef5d0-ca42-428d-baed-7a9ee1e4f288]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [cb3e29f8-0f0c-49ab-a006-fdf9f1e75120]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -60,51 +60,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb1a3a42-fed5-11e6-8ae6-645106422854]
|
||||
x-ms-client-request-id: [5da7cd24-0e6a-11e7-9ec4-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1488410567475,"modificationTime":1488410567475,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1490123565778,"modificationTime":1490123565778,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Length: ['326']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:47 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [f49d5570-60a1-42f7-aa6f-4127d18cba44]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb2e72f4-fed5-11e6-9673-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"FILE","blockSize":268435456,"accessTime":1488410567475,"modificationTime":1488410567475,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22: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: [2a8ba94e-2686-45be-86d1-17e46b11a1b9]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [15593141-779e-45de-aef7-6171d3f7c619]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -113,25 +87,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb427012-fed5-11e6-80c5-645106422854]
|
||||
x-ms-client-request-id: [5dc15df8-0e6a-11e7-ba68-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?api-version=2016-11-01&recursive=False&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo/foo?recursive=False&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:47 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [4bb964c6-1d14-4f47-bad2-e5995b736174]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [0000a53c-cca4-41b1-bae5-e879dde3953f]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -139,9 +113,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb5f812c-fed5-11e6-afaa-645106422854]
|
||||
x-ms-client-request-id: [5de3e9ca-0e6a-11e7-8415-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
|
@ -150,14 +124,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['34']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:47 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [6c4f6cea-e2b5-47ff-9204-be2c6dfb7318]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [474575e2-5021-4e91-961f-b4ec1e195021]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -165,25 +139,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb72bc18-fed5-11e6-bbcc-645106422854]
|
||||
x-ms-client-request-id: [5dfea176-0e6a-11e7-84a5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1488410564220,"modificationTime":1488410567907,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"foo","type":"DIRECTORY","blockSize":0,"accessTime":1490123561876,"modificationTime":1490123566156,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['301']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:22:47 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [741e87dc-171c-49f7-9b86-168524cda243]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [537d3525-9dda-4b48-a0bf-45f7dbfe63d4]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -192,24 +166,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fb8643a8-fed5-11e6-bf34-645106422854]
|
||||
x-ms-client-request-id: [5e1dc8cc-0e6a-11e7-8095-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?api-version=2016-11-01&recursive=True&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/foo?recursive=True&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:22:48 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [a1e7016f-4b12-447f-9d8a-8e1cad1c0aa5]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2aa0ca6b-6d11-413e-87f4-5bb45bbdd76f]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -6,26 +6,26 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f35acf38-fedd-11e6-b7f4-645106422854]
|
||||
x-ms-client-request-id: [86bd0bda-0e6a-11e7-8dc9-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19:50 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:54 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&api-version=2016-11-01&overwrite=true&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [e664ef17-c275-48b1-a2e4-4819f67bb987]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [293c509e-0d99-4714-93e7-7739aa6762b6]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,368 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3ab3938-fedd-11e6-8c02-645106422854]
|
||||
x-ms-client-request-id: [870c3e26-0e6a-11e7-8ce8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:9a23860e-03b0-4bad-a8b7-e1d081d592bd:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['256']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [1444b276-fd10-4f29-a050-3a396da0662c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3bee850-fedd-11e6-a4dc-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=SETACL&api-version=2016-11-01&aclSpec=user%3A%3Arwx%2Cuser%3A9a23860e-03b0-4bad-a8b7-e1d081d592bd%3Arwx%2Cgroup%3A%3Arwx%2Cmask%3A%3Arwx%2Cother%3A%3A---%2Cuser%3A470c0ccf-c91a-4597-98cd-48507d2f1486%3Arwx
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [b249252c-4439-4c64-aab4-7c8ef71e0a09]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3d36e22-fedd-11e6-ba45-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:470c0ccf-c91a-4597-98cd-48507d2f1486:rwx","user:9a23860e-03b0-4bad-a8b7-e1d081d592bd:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['304']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [7fab3c3c-e3c9-4815-83f6-3c40398df0d3]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3e7a676-fedd-11e6-9925-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MODIFYACLENTRIES&api-version=2016-11-01&aclSpec=user%3A470c0ccf-c91a-4597-98cd-48507d2f1486%3A-w-
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [1f09e0f4-922a-4a6d-bbbf-7c0f8b31b07d]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f3fbf142-fedd-11e6-9ecd-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:470c0ccf-c91a-4597-98cd-48507d2f1486:-w-","user:9a23860e-03b0-4bad-a8b7-e1d081d592bd:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['304']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [309a1fec-ddc9-4f87-af64-7b7bb66b8723]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f40fa146-fedd-11e6-a128-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=REMOVEACLENTRIES&api-version=2016-11-01&aclSpec=user%3A470c0ccf-c91a-4597-98cd-48507d2f1486
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [f639caad-9024-4bd4-b93a-c846ebd23aa8]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f424886c-fedd-11e6-8870-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:9a23860e-03b0-4bad-a8b7-e1d081d592bd:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['256']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [91bfcf3c-b9e9-46aa-ab27-0c788b09a863]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4382376-fedd-11e6-94cf-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=REMOVEDEFAULTACL&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [c597e610-fa1f-4d87-bdc9-759323225c85]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f44d0acc-fedd-11e6-b985-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:9a23860e-03b0-4bad-a8b7-e1d081d592bd:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['256']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [a6a8be48-33cc-4d30-b0b9-f190ab46a6a7]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f460931e-fedd-11e6-8dfb-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=REMOVEACL&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [eefe876d-ae69-4979-9478-778962c77aef]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f47812ba-fedd-11e6-aa73-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=MSGETACLSTATUS&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['196']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19:52 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [e4c4587f-7807-4eb8-82c5-4b659238c79f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f48bc1c2-fedd-11e6-a139-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488413990970,"modificationTime":1488413990970,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [5544fce8-35bd-4e01-9353-939d51291e92]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4a0bcc2-fedd-11e6-9f77-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488413990970,"modificationTime":1488413990970,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [0ffba1ce-346a-4cc8-a4b3-fbd75c2375ae]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4b52f14-fedd-11e6-91d5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=LISTSTATUS&api-version=2016-11-01
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488413990970,"modificationTime":1488413990970,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 02 Mar 2017 00:19: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: [fe22f3a0-e2b2-4136-bf42-c6212bdb6e88]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [4ff3350b-5b22-4fa2-9b0e-f7728d63d885]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -403,24 +60,315 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [f4c9dc10-fedd-11e6-b265-645106422854]
|
||||
x-ms-client-request-id: [8720d874-0e6a-11e7-b485-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?aclSpec=user%3A%3Arwx%2Cgroup%3A%3Arwx%2Cother%3A%3A---%2Cuser%3A470c0ccf-c91a-4597-98cd-48507d2f1486%3Arwx&api-version=2016-11-01&OP=SETACL
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [cae04ba4-1597-48b2-bdc0-baf163b8dfc0]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87396b90-0e6a-11e7-9c8f-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:470c0ccf-c91a-4597-98cd-48507d2f1486:rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['256']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [90cce58e-068f-4bb1-80ad-04db17feb99d]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [874e313e-0e6a-11e7-801a-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?aclSpec=user%3A470c0ccf-c91a-4597-98cd-48507d2f1486%3A-w-&api-version=2016-11-01&OP=MODIFYACLENTRIES
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [d85b1fc0-f1b4-4afa-b611-9615975f581b]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87641758-0e6a-11e7-97e9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","user:470c0ccf-c91a-4597-98cd-48507d2f1486:-w-","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['256']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [d70e2df0-999c-4701-a8df-e732f10b5fc7]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [8778ec9e-0e6a-11e7-a231-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?aclSpec=user%3A470c0ccf-c91a-4597-98cd-48507d2f1486&api-version=2016-11-01&OP=REMOVEACLENTRIES
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [dc92e4ad-b990-439a-9f9f-5dc5265b4fbd]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [8793efb0-0e6a-11e7-9c71-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['208']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [0741877f-d7e8-4342-9b29-a654fa8af98f]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87a88938-0e6a-11e7-81b2-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=REMOVEDEFAULTACL
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [95b5a6f9-016d-41f0-8842-61aa7a7797bb]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87bed0b6-0e6a-11e7-bbc9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","mask::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['208']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [f40eb11c-4703-4640-9f79-20e6fb3a9aa9]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87d3df0a-0e6a-11e7-9948-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=REMOVEACL
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [8d7b0b7d-1b55-4039-a401-46ce87c8c07c]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [87ec0e5e-0e6a-11e7-b367-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=MSGETACLSTATUS
|
||||
response:
|
||||
body: {string: '{"AclStatus":{"entries":["user::rwx","group::rwx","other::---"],"owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","permission":"770","stickyBit":false}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['196']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [843b4175-51cf-4904-b9f2-2160f26f2c3a]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
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.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [8800cf46-0e6a-11e7-8de8-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1490123635239,"modificationTime":1490123635239,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [a3ab0104-b0cb-48ba-847c-625aca92a73b]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['0']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [88167eba-0e6a-11e7-a05f-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&OP=DELETE&api-version=2016-11-01
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&api-version=2016-11-01&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: ['Thu, 02 Mar 2017 00:19:52 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [1874cc3c-0a22-41c2-a108-0cac802e45ce]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [44acc0ca-e21b-48e3-96ed-8abb8c1fbec3]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -5,284 +5,24 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [18c126ca-e290-11e6-9b2b-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":1485301919798,"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: ['Tue, 24 Jan 2017 23:52: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: [89b52ad0-5b87-4e5f-b540-b0782d73cdf2]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [96dbcb9c-e290-11e6-9c21-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":1485302131378,"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: ['Tue, 24 Jan 2017 23:55: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: [8d98d669-ceaf-46a0-b79c-20ec0385a5fa]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [90e7f81e-e29d-11e6-8e2d-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":1485307704822,"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: ['Wed, 25 Jan 2017 01:28:25 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [765ed1d6-4272-4c37-b813-69a695d40a01]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [39b4dfe6-e29e-11e6-9e52-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":1485307822683,"modificationTime":1485307988013,"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: ['Wed, 25 Jan 2017 01:33: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: [6a45141f-839f-4a22-9e08-c562ad35d92c]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [51afcb9e-ea4e-11e6-a8b6-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":1486153169939,"modificationTime":1486153277860,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:21: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: [3d3338a9-cb1d-4b3a-8378-f8c80efbbdb5]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [696a3cd2-f8a1-11e6-bfff-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":1486153420480,"modificationTime":1487728281983,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 01:51:22 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [2878eacb-18da-49ba-a0a1-d7d10397c87b]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [fc37608c-f8a1-11e6-9a3f-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":1486153420480,"modificationTime":1487728528204,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 01:55: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: [79dae49d-1b00-4467-ad3c-744ef0168ec2]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7554cef4-f951-11e6-8aa8-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":1486153420480,"modificationTime":1487803893576,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:51: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: [f9708071-3f98-4a17-8464-8a775718ac2c]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6a047da4-f952-11e6-9adc-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":1486153420480,"modificationTime":1487804304065,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:58:24 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [7031e3c4-c503-46d5-8100-5a7b555ca87a]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [48f8f200-f962-11e6-b867-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":1486153420480,"modificationTime":1487811120541,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:52: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: [231dca1b-fa34-4714-bb17-0f014dad6d44]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [02dc80e8-fed6-11e6-b52b-645106422854]
|
||||
x-ms-client-request-id: [64a85910-0e6a-11e7-a45d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488407205506,"modificationTime":1488410580314,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1490121793613,"modificationTime":1490123577468,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Length: ['582']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:23:00 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:12: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: [c9f33036-0a95-42d2-a157-8e87975fec96]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [202a653d-14fe-4c2e-8b13-41de3801d7fa]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -6,26 +6,26 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3a14c03a-fed6-11e6-9d37-645106422854]
|
||||
x-ms-client-request-id: [8840884c-0e6a-11e7-a885-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:24:32 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:57 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [502dbda0-9d73-4c30-89f6-7874f4f0cbbc]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [875094c8-6fd5-48cf-86e3-105e21203594]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,25 +33,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3a6159ae-fed6-11e6-a0e3-645106422854]
|
||||
x-ms-client-request-id: [888cd61e-0e6a-11e7-8431-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1490123637755,"modificationTime":1490123637755,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['323']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:32 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [32f65558-3f69-49a5-9d5c-1fd89fe20189]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a18f706a-da5e-4e4c-b7a9-eff963f12608]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -60,22 +60,22 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3a775208-fed6-11e6-8145-645106422854]
|
||||
x-ms-client-request-id: [88a280f8-0e6a-11e7-9f72-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfsext/azure_test_dir/a?api-version=2016-11-01&expiryOption=Absolute&OP=SETEXPIRY&expireTime=1896091200000
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfsext/azure_test_dir/a?expiryOption=Absolute&api-version=2016-11-01&OP=SETEXPIRY&expireTime=1896091200000
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:24:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:57 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [db452d44-0095-470a-837f-e4ffc7dd16da]
|
||||
x-ms-request-id: [21fcd5a7-02e4-4856-93be-284630e82bbd]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -83,25 +83,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3abc23e8-fed6-11e6-8221-645106422854]
|
||||
x-ms-client-request-id: [88cd1268-0e6a-11e7-a27e-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":1896091200000,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1490123637755,"modificationTime":1490123637755,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":1896091200000,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['335']
|
||||
Content-Length: ['336']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [96026ccf-254e-4d52-9a5b-1be409a1b651]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [978a7c5d-bd60-4904-9a46-735332b82b9a]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -110,22 +110,22 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3ad1ce24-fed6-11e6-9a95-645106422854]
|
||||
x-ms-client-request-id: [88e2d0f4-0e6a-11e7-9ad9-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfsext/azure_test_dir/a?api-version=2016-11-01&expiryOption=NeverExpire&OP=SETEXPIRY
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfsext/azure_test_dir/a?expiryOption=NeverExpire&api-version=2016-11-01&OP=SETEXPIRY
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:24:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:58 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [da1e1b6b-1dde-4607-9b86-9118ec8fafbf]
|
||||
x-ms-request-id: [ed3ab9bb-36dd-4e4d-b4b2-8dadab63e570]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -133,103 +133,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3aebe64a-fed6-11e6-b861-645106422854]
|
||||
x-ms-client-request-id: [88ffceb4-0e6a-11e7-a144-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1490123637755,"modificationTime":1490123637755,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['323']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:33 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [a7ea98aa-aecc-41b6-9896-993cc835af7f]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3b0169be-fed6-11e6-8f94-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['323']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24: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: [5138a66e-eb8e-4ed2-970e-2252007d5fe3]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3b1714b6-fed6-11e6-b846-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['323']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24: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: [ca83dd6b-4bde-40b4-942f-9ac3f09fa9a0]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3b2c9862-fed6-11e6-bec4-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410673627,"modificationTime":1488410673627,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['323']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24: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: [53672520-5b15-48cf-b7ae-11374a15f3cd]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [b8324160-2541-4f7a-a500-e0100aec61e4]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -238,24 +160,24 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3b4256e4-fed6-11e6-963c-645106422854]
|
||||
x-ms-client-request-id: [8915c8c6-0e6a-11e7-a297-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&recursive=True&OP=DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?recursive=True&api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:24:34 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [69bed900-a763-480c-8f8d-3b4a7f16ef2c]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [b1f955b3-9b7f-4615-b464-956f542032ca]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -6,26 +6,26 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [b0b16e90-e29d-11e6-997d-645106422854]
|
||||
x-ms-client-request-id: [7bbe0040-0e6a-11e7-8d06-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 25 Jan 2017 01:29:18 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:36 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&api-version=2016-11-01&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [f98463ed-f3eb-48b2-a4df-f08d6cb2fd9d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [c639b3bd-fb09-4eef-ac6f-db769791364d]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 201, message: Created}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -33,915 +33,25 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [b104e5cc-e29d-11e6-93c2-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":1485307758679,"modificationTime":1485307758754,"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: ['Wed, 25 Jan 2017 01:29: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: [88898289-cb40-4d4a-b764-2ab7cdd887ad]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [b118e300-e29d-11e6-91d8-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":1485307758679,"modificationTime":1485307758754,"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: ['Wed, 25 Jan 2017 01:29: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: [21c63349-7617-4467-b4c9-3d2f15ede4cc]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [b12c305c-e29d-11e6-adb2-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&OP=APPEND&append=true
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [5754be27-7184-40fd-9f2a-bbe464aca5cb][2017-01-24T17:29:19.5085746-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 25 Jan 2017 01:29:18 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [5754be27-7184-40fd-9f2a-bbe464aca5cb]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [594f5538-e29e-11e6-bee8-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 25 Jan 2017 01:34:00 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [a45fffc1-e528-408f-a6ce-37ef693613da]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [599cffc8-e29e-11e6-a0a6-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":1485308041549,"modificationTime":1485308041614,"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: ['Wed, 25 Jan 2017 01:34: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: [21f0ea33-857f-4e00-aeb3-966cdb13e3c7]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [59b6199a-e29e-11e6-afce-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":1485308041549,"modificationTime":1485308041614,"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: ['Wed, 25 Jan 2017 01:34: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: [a3156ec9-7f89-4b2b-be29-70f88346219b]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [59c82e78-e29e-11e6-bf94-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&OP=APPEND&append=true
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [4070b00a-7b6f-4cd1-acd7-70de2e28af2a][2017-01-24T17:34:02.0793217-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 25 Jan 2017 01:34:01 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [4070b00a-7b6f-4cd1-acd7-70de2e28af2a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [76ef0d92-ea4e-11e6-833f-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&write=true&overwrite=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Fri, 03 Feb 2017 20:22:21 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=CREATE&write=true&overwrite=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [66af24cb-23cf-4988-80e1-ad4009d4f4ae]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [77467c34-ea4e-11e6-b56d-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":1486153340868,"modificationTime":1486153340933,"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: ['Fri, 03 Feb 2017 20:22: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: [fdacb686-77a2-47a4-9319-4e552fe80b4c]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7757a6b6-ea4e-11e6-b3e2-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":1486153340868,"modificationTime":1486153340933,"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: ['Fri, 03 Feb 2017 20:22: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: [887de14e-7f89-493a-89c8-9ea1aef70d2b]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [77691f7e-ea4e-11e6-8706-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=APPEND&append=true&offset=5
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [560b97e1-8dc5-4374-a300-b5ea4afeb6c5][2017-02-03T12:22:21.4151381-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:22:21 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [560b97e1-8dc5-4374-a300-b5ea4afeb6c5]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [92c6cb80-f8a1-11e6-a286-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 22 Feb 2017 01:52:32 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [18cea961-2d06-4a49-a40f-58a891b2cba3]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [931d3178-f8a1-11e6-96e7-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":1487728352090,"modificationTime":1487728352172,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['Wed, 22 Feb 2017 01:52: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: [a15c2902-30be-402d-a209-f260f31e29cf]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [932e6b02-f8a1-11e6-ac59-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":1487728352090,"modificationTime":1487728352172,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['Wed, 22 Feb 2017 01:52: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: [a82d7efa-d3a7-4d2d-bc47-1fda3fe5d866]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [933fd0d4-f8a1-11e6-996a-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&append=true&OP=APPEND
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [073c606c-e1a0-4f16-97f3-ca701cd29a63][2017-02-21T17:52:32.6113948-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 01:52:32 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [073c606c-e1a0-4f16-97f3-ca701cd29a63]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [26ba940c-f8a2-11e6-9f44-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 22 Feb 2017 01:56:40 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [acd7cb54-3677-4400-bbec-40e3cfeb5be3]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2708d640-f8a2-11e6-83e2-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":1487728600307,"modificationTime":1487728600353,"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: ['Wed, 22 Feb 2017 01:56: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: [9219b77b-ade1-4a86-9382-4058a9ae90ee]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2719dbe2-f8a2-11e6-a47a-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":1487728600307,"modificationTime":1487728600353,"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: ['Wed, 22 Feb 2017 01:56: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: [9176f92a-2cae-40db-a627-44173d14537f]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [272ae72e-f8a2-11e6-8ec2-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&OP=APPEND&append=true
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [4b99c8a4-8e00-4a35-9e3d-fc655945caa7][2017-02-21T17:56:40.7736354-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 01:56:40 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [4b99c8a4-8e00-4a35-9e3d-fc655945caa7]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [98910b58-f951-11e6-80eb-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 22 Feb 2017 22:52:32 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [e71e40b0-9222-4d47-a9c6-99c060d02707]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [98e60914-f951-11e6-be08-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":1487803953277,"modificationTime":1487803953328,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['Wed, 22 Feb 2017 22:52: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: [056d3439-6654-431d-9053-d0536a597a1c]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9902f380-f951-11e6-91f7-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":1487803953277,"modificationTime":1487803953328,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['Wed, 22 Feb 2017 22:52: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: [3bdfa0d5-3d95-4430-af96-51d6c988b701]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [99173ecc-f951-11e6-bf77-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?append=true&offset=5&OP=APPEND
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [65f09731-8bff-4f7f-9ff3-05fbbc6128ad][2017-02-22T14:52:33.8698765-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:52:33 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [65f09731-8bff-4f7f-9ff3-05fbbc6128ad]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9d9d8450-f952-11e6-b6f2-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 22 Feb 2017 22:59:50 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?write=true&overwrite=true&OP=CREATE']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [fe5f0781-dc1a-4bd1-97a7-553725a3fda5]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e1c16cc-f952-11e6-abc6-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":1487804391277,"modificationTime":1487804391541,"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: ['Wed, 22 Feb 2017 22:59: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: [54f8bd57-67c3-4ab9-9c37-585e29d8ee64]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e3b379e-f952-11e6-b2b8-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":1487804391277,"modificationTime":1487804391541,"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: ['Wed, 22 Feb 2017 22:59: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: [a8b32e86-6014-4d48-a9cb-85beebbfaf7a]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e50a7de-f952-11e6-835b-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&append=true&OP=APPEND
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [94cef1d2-c4a0-4526-905e-83a283cf15d6][2017-02-22T14:59:52.2550598-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:59:51 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [94cef1d2-c4a0-4526-905e-83a283cf15d6]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6bef6be8-f962-11e6-8c07-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: ['Thu, 23 Feb 2017 00:52:59 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: [b2f01e6d-ebc9-43c6-a1a3-f93d1cead8d4]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6c47b4ee-f962-11e6-92da-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":1487811179839,"modificationTime":1487811179899,"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: ['Thu, 23 Feb 2017 00:53: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: [923ff809-0d4b-49ef-8304-389d8588d176]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6c5cea8a-f962-11e6-89ce-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":1487811179839,"modificationTime":1487811179899,"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: ['Thu, 23 Feb 2017 00:53: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: [f599973f-9fcc-42ca-b6f8-e86813e29df2]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6c7197ec-f962-11e6-8a0a-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?offset=5&append=true&OP=APPEND
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [3473b0ed-e57a-4ddb-a9ad-ba38a31bc416][2017-02-22T16:53:00.3959197-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:53:00 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [3473b0ed-e57a-4ddb-a9ad-ba38a31bc416]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 400, message: Bad Request}
|
||||
- request:
|
||||
body: '000000000000000'
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['15']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2b67bba6-fed6-11e6-8b28-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true
|
||||
response:
|
||||
body: {string: ''}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['0']
|
||||
ContentLength: ['0']
|
||||
Date: ['Wed, 01 Mar 2017 23:24:08 GMT']
|
||||
Expires: ['-1']
|
||||
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&overwrite=true&OP=CREATE&write=true']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [7875da07-7803-4499-aadb-1f9a8a246ba8]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2bc57f68-fed6-11e6-9f01-645106422854]
|
||||
x-ms-client-request-id: [7c19c870-0e6a-11e7-824d-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410649010,"modificationTime":1488410649059,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1490123616751,"modificationTime":1490123616801,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Length: ['325']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13: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: [2ee7c4a1-d40f-4a85-a5f2-2fd48569ca5b]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2bdcec08-fed6-11e6-b60c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":15,"pathSuffix":"a","type":"FILE","blockSize":268435456,"accessTime":1488410649010,"modificationTime":1488410649059,"replication":1,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['324']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24: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: [884b5c30-94f7-47a8-8d21-0e17f9b294ad]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [a3b5bd9d-f3e5-4bea-9fe2-db50a02f9d03]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: blah
|
||||
|
@ -950,25 +60,25 @@ interactions:
|
|||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['4']
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [2bf221d0-fed6-11e6-9eb3-645106422854]
|
||||
x-ms-client-request-id: [7c2fc276-0e6a-11e7-bb94-645106422854]
|
||||
method: POST
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?api-version=2016-11-01&OP=APPEND&append=true&offset=5
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?append=true&offset=5&api-version=2016-11-01&OP=APPEND
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"BadOffsetException","message":"APPEND
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [54d1835e-75b4-49c4-a1fa-0b3663f8d714][2017-03-01T15:24:09.6003257-08:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
failed with error 0x83090015 (Bad request. Invalid offset.). [3a948d56-2db9-40f6-b712-4740702883a9][2017-03-21T12:13:37.2033197-07:00]","javaClassName":"org.apache.hadoop.fs.adl.BadOffsetException"}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['270']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:08 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:13:36 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x83090015']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [54d1835e-75b4-49c4-a1fa-0b3663f8d714]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [3a948d56-2db9-40f6-b712-4740702883a9]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 400, message: Bad Request}
|
||||
version: 1
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -1,90 +1,14 @@
|
|||
interactions:
|
||||
- request:
|
||||
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJXulAGmnUY-Cs-OMjdU7kYBDKvsXFwXrI_f-CuMBdIXFMUffP5MyA7TKYVqIMArOwCCMyUOUpy4df1oVfUy2LBmLCiiRuNzon8KO9-Q1N_DtjzWlsZR5GNX1uw4D78fkRGMM73-GHxp_xbSYfBtNuzts5m4OaMPfZfKVsNZFE1K4sy17Pi89EQ8AyNa9wjSPWq6Tt8qu_tzUOQ5zz75_bt3FoUJYFIyhQLM6cULXW68V43kpyc8xz57-3Z8oUjmHHACDMR54tQwHxgkihGZoLbOwHrd0DYhUIsOfhDjR1K61ajMy1jw0stIl7iXhDSY3A2wF8fIHJ2wmRh1tVuRUrgzJj3jAd8XkaKNgoJvVslfIV92vyswkDT4Oe502vZ_INH4nyccllQ9mesWUFy6YoJciy8Xk5dxL6wYZZ0Edm20QKTWmHZxf8ipzPIZjXrL7w4c8pA9Qaztywzq5i4ys2uAvm-rWT8Sl5dbJzrx97PA2kNMlazFEmnbmuaivVdSEZydsHu0pVlf283dMX8tRxRLzOM9UP0psBmbz9NwS5QzdQEw5q8FBMhvEe2hsI6wjjrn7WAtjUwk75t1hEKdNhmSq19wuWXWvq-GAki2v6avwW-6yy7mfXcbs8UlKlQuQxIAA&grant_type=refresh_token&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46
|
||||
body: resource=https%3A%2F%2Fmanagement.core.windows.net%2F&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJVqXdCzwmJgfDTXxP8xE-yiud6gRMQfs4WkyCNP_oDNZk-cKtHnT3vvjMJLBx2KqHzgvpDR6MsCPgfEP4rRhW1iVo3ofFnxcGeAOgdegu8Xgs-Z57V2LvFyRkB3k5ZsDrxP3gqHgpM4Kdug20RtTNdkR-r6NeQpRCM_AYT7jgrbkJPGTNZw7kWFpJmlB3R3l-M2KU_-nOZts1QIQiiffprqKjhH8UKl1sLmPibnQt67lFdhdwLcpAanOaz85XCYw75Vq9bZn1FOmhem1_uJsNx1oykk9GK08W3LWSXoZpT5fizo6s8FFGMKLB8RAPg55vlInmL7B4g0aJ6Y0kLO6Xx05wKG-dBVbeSSYOiqjgmWieTCtdb_gbxLvq45rv0rkko7Esq7eOKURrMqlm78ASPVawptaBYPc5MueCx2AhPfr6I99pwESj4h5PXH-FkQsaYwLNExFIJP2I7zbG90L8ggX1kKK2MAy0wkNEgztYT5imvNI0Rb-CbNnnyvh2KNDnP_jI0MEHx3Y5Q3JJSaOMHM7F6_l5JDDe4tq4NJ42CJOFVL-bFLq7xL6nzr46HNhUxmGpF6g1rdztLJ7LsjHQtFL8ziY1TFmjYGUolb6JF_eixbDDJXS-troeQh2kgOpqOSTYze5jSjCGE8LJOIlmv5Ad8kcRJ621eteNuTu108W6l0VlLCZUumCGvaZRbAVsIAA&grant_type=refresh_token
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.11.1]
|
||||
client-request-id: [5f40f93c-41d5-4957-8216-f60d5bafab87]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"1485311380","not_before":"1485307480","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSIsImtpZCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg1MzA3NDgwLCJuYmYiOjE0ODUzMDc0ODAsImV4cCI6MTQ4NTMxMTM4MCwiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJlX2V4cCI6MTA4MDAsImZhbWlseV9uYW1lIjoiVGVzdDAyIiwiZ2l2ZW5fbmFtZSI6IkFETCIsImlwYWRkciI6IjE2Ny4yMjAuMS4xMzUiLCJuYW1lIjoiQURMIFRlc3QwMiIsIm9pZCI6IjlhMjM4NjBlLTAzYjAtNGJhZC1hOGI3LWUxZDA4MWQ1OTJiZCIsInBsYXRmIjoiMTQiLCJwdWlkIjoiMTAwM0JGRkQ5RDkyNEEwNSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IldYcVY0aUpoTnNSeU5PZmFQMDZBSHFuRkJSZVYwUlVsYk10NW5GSlFmOEkiLCJ0aWQiOiI2ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIiLCJ1bmlxdWVfbmFtZSI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ1cG4iOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIn0.CdaFD-z6NHgwMzerZ4gJKuGU0o613KCwEmBYqO8CEXehnN_p11D3lT9MM3lKw_M6n7TihGciWQf_qtTTfn_wnpxKHlEaNVBDI1iFdS2te6Ptwez5HKo5vuql0Q9nj9yCI-hQl3P3aO8BTahn4JgzqkMGa-Zh0-MYOi_kaIdcR_lXiytGSHtHsOGwF9ZsOQ67JZvZ94HTpziL71KigIn4iqm5eC_6v3o-SBl6PU-2YyvTvJ-JLUZsIY1Bny01nhJc4BFdqhPfJRgb8OiiLNPEMTBdo-rF8GQZYTCzxzW5sHnvcZOxV-drI6LjF7FWMKcCfKNs9G9iO-hcgdmeOaahMQ","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJXOAx71k4FwLC2jvuX4kRLxmTfnusGbGhJk7HZBSpIlKMujNDPpjTNj7rttVZhe1W3WEBrxyHxnoR5XNthTMiLm8ZMWQJVP9iiKOT6qijyadbXsrZQ73qU2cpBX4g7Fj1ncwksKByLZub_H52i0wLpadGlKKtbimQRbpKkBVaI4sGB_Pgy7ioCfMS596s80L4HXizUVhUtOGs9HS5ulSgilM9Htku8pfn-SF9c-uxkzqxyL39amn-O-MTPll7er0z22gYMbZlzRqr-oLGkxM1PoNEXsXyppLBRXart_053pni6R4cV0w8Y2AzW6CAKpzmIdb6aa_SI3kkCffhPZ_IIHjlxkK4ORB8zSzBxVn6grGh2B9ZJBMjX6RK3udCXJyEsUCTexa4TXzgeZf51OB6-EuFVW0vVEMqOxA-AEX_LLcAVP5EwE2wCbAhhxvnzvXY-edjLVKmEBuwwOjxwko1O0xdafDU5ptXHtrMmLudJCQHbHvQmHm79ffixrAgmjqV0kEI88S8KxE2eSmR7kuIzy6i1U2_hxP4_ltJJrT1YF3TscbAHx0S8ucRpuAsDGqksimGpuibx-Jso4vEAS70PoIw9ObWlIFjdOmbrVYGJamzHGojG-O5olZE87gKMvwhIAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2294']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 25 Jan 2017 01:29:40 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-adpCJyW3UMDLRC90xFDhXJfouu-WhiYqIYGQ4FEWAe7o5dJRXNhPUBp07sCABPqYtIujwKJMhnU9dgSfnuWI6_6OEREYj0D09Mz31f9uQ_o2cV17SXNoKQ1-Iu_1_Os0uGL-uTEGo1dJHHOx_4-ZF7uI9iq0aut_lceGuXT_pO9tCJ1EgAA;
|
||||
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: [5f40f93c-41d5-4957-8216-f60d5bafab87]
|
||||
x-ms-request-id: [7c3bec76-5bfb-4255-841d-d124e2bc5189]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJnKEM8rpM0wGG0YanCwn0xy4jHuaIsP5BxLY3t3fiOtJyXoacfzBcTIqZf8Y1BTZFyAQs-K9JjzOktZqxsSarkm2PL2R5kBf3Z1GdC4o-ogLySdpnmaiHjLUgh3z4v7RBNpCd9-W9ZViO-d7we-v7VzAb15dc1ldoCC-icGJz-hskM9hz_GufqP0BK60oTWxYQcdPO80P_N8z-J6xXWnv_2ULMrlOqd0cYmjnwWxlvz5uZg-Zw1wqD_6rikRR-wUbRT0gMAZZADJ2MiI2Q_98Cv1ujwPASJKTlhhGheK3aZN5eQ3jEZgqU_mRXoEP4lTjsAixG4vFbPkoBnilAYQ64iuqULPPqkTUR-cfrHvRskEr2dkPZNRTANxGvfId9VntdjQalwre9jupRLd0_nLjyQWGZ7OKnvybWEnEZHjTNwtpalcKyZ260blw0FQHq11nxOcOxHfM5qWNmiJYfiTv31kXW3lAfi-gnnrXAyAWfkPG7vNXzMJ0-DsdRf2NP-Q7j2wt2k-T3zDYV0wyHz_xk5SxG-K7bCaVDtEQGxR_9H7J5LVVxREnYY_ClVi0_At0KQ1Ow18JxTvWvZERBfoUWkulo19UHJzLqtrk8rA4L8HTJthU4eg--trM1n5BrUdbIAA&grant_type=refresh_token
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.11.1]
|
||||
client-request-id: [4e5b505b-a515-4eca-91b0-221395bafb9d]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"1485311664","not_before":"1485307764","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSIsImtpZCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg1MzA3NzY0LCJuYmYiOjE0ODUzMDc3NjQsImV4cCI6MTQ4NTMxMTY2NCwiYWNyIjoiMSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJlX2V4cCI6MTA4MDAsImZhbWlseV9uYW1lIjoiVGVzdDAyIiwiZ2l2ZW5fbmFtZSI6IkFETCIsImlwYWRkciI6IjE2Ny4yMjAuMS4xMzUiLCJuYW1lIjoiQURMIFRlc3QwMiIsIm9pZCI6IjlhMjM4NjBlLTAzYjAtNGJhZC1hOGI3LWUxZDA4MWQ1OTJiZCIsInBsYXRmIjoiMTQiLCJwdWlkIjoiMTAwM0JGRkQ5RDkyNEEwNSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IldYcVY0aUpoTnNSeU5PZmFQMDZBSHFuRkJSZVYwUlVsYk10NW5GSlFmOEkiLCJ0aWQiOiI2ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIiLCJ1bmlxdWVfbmFtZSI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ1cG4iOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIn0.paH1886plaOoXGfyh3fnXN2-mzxDzM_W7FWNpe1_XHFUitEWf-40DdZNWxhGizIC2356a4zqNDA1s3B2Bn8YiLRts8k2HQLggqnSrra7Hm7ifIETwG6YURA4EpTefI1zeHa83ik2KdYfIoE98vwhqkLVuouIeVw8XPt5JFqgrKvNapOVz821C6Lzd3Qfj91K0OZqbZbEaHB-3nlCurAH2JKkMgUFZB2VNoNauhZxiZjZ47pNnjTe-r0IX_G0jQiNbbZ4pJ4UZtLe5BTkrecsgLEVGlgfrT2rzl0m1lYLfZMypMCN9IiLGV1kNGVl6pYmdrpBOeqS7FkNcD8o6hOSvg","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJDa_btR3RcqbmsRe1zuGixYmyClGOOlNJw7j_0ARNDLPNLtW-xBHUpx1naxVG0VvW66V_fztbP3PcDkfrrcDx_87Uk8J5lB47WHXa3XS2KwlWG6uhqyAWKv7-3AfcGYDtUuLbOQo3sUppuYHr9iXPefMYivcVADm7E6NWTgqEn_P86Aax--UCgVKcHVuM4DKUtnk9yQ4-PbKYiJQIf43LtaEToLKLgctjljd79c_qPsc3zGJw-yKJcW6Gn66-KEmnHS9WHi23WxPw6Ti4z8IGnrv3BzD4tv8-mASHE6i_LPtGk8w4uux00uWkfr1U4eoxKhvqyB6WMyWeUAXgzXi4ChGC_v5MeKi6XSuoj-0rN6AdShSb85sqoHnBBMmJihxMF6O9DLCLwRzxJsXKth2qYgXpOwnC_hABy61Brrjk6BLEhhXAxxJbi2mi7zlNRC_9_kkZRqJauuhqrKeN0IoFjHMVcHFvyJgZSYE1Sapp7g6jbQ9iOLfpZL9anOMRtTXDvnWy0V6iCrNmRN-fnV7x8hinkmXp_9u_jMpgTZp7a3htgOsPmYPYgkR6nEt4ddcVUEKMFCgsE8QctAi0hMtHUJExbzWS3QduspS97olIGB3-NRTyUL1q7us2NM0BS60BIAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2294']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 25 Jan 2017 01:34:24 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-adpCJnGGqX16yGjb-r58z0rI9iLlZCut4r9Zk6PzsYkXmU6v3Dy5mm-J99LEFhNGDpNx6yFg4qqTsb4k67ttjD_MJKlKctucbGn3bqILHRbEvmv0bLkrsFupgyqbWYcIm9dd_mLK8qNYmA5k775LVcnGgrE88oLnWtswZcB_5WbcTmvsgAA;
|
||||
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: [4e5b505b-a515-4eca-91b0-221395bafb9d]
|
||||
x-ms-request-id: [0e4934e8-ae80-418c-b1b8-de5aca299978]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJoEpm4bX_foh-usHPV7eRlE2ACye0Hd4qPVLp9fThgKSAAT-dttJZ_Q7uZmDtlmycaT9gz5paBIfjb2pGutJ5MZiaDWpIIhIVGYkSYBmC-ANHAxR4McknKBo-5imMpuF7o-xTKjf69xP-IB9Lm_jAQoeWc7Q7gTMR43XiKAkkAyV2h7FvPlhYqckqqIF7e0K9wikDBVxXVMxI273kUEEU3S-IhcN8E_ndLsX7fO8NE-uQ-DtJqzC76ZmZQY8JG46llv9ZIGqH5rXhHVvOf1YROuba83xfJQ3ZP0p1UhMpNGKrfeJ_Q7Y8GuhD7fS5xLXHBYGMl0v5vF120FCJxUdKItB8RfUHN2RFTLI4zZkf2Pnx9n1ZJpajXywG_ZuVfYuvKAjZt3I85V3dxYoIaBx5be_yxeC4v5s-Ypx6ywZL6K1pfNBhocsNYSEmckG3q9I8uPmO_F3VUIyTOZ8Msqkgn-l1BUPVYUsPNB18NEI9jvimargIIUp_IFjMzy_8EMILLBcm-upeXuP-pUnuns7YStBoGVVlplYEYDAmXndFCYlYAeZ1wACJbm5BX0HJu84-RrunQVnRPumt0dMndtDa3aS0JSPXMYRN_hark6X01BIot3UeCWCJ6DL3BO2_AD1yIAA&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token&resource=https%3A%2F%2Fmanagement.core.windows.net%2F
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
Content-Length: ['879']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [1d42fc9c-674a-436c-99e6-de3f286b36a4]
|
||||
client-request-id: [e4b60b4a-88a2-4d83-885f-bd6273bcf305]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
|
@ -94,213 +18,23 @@ interactions:
|
|||
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":"1486156963","not_before":"1486153063","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSIsImtpZCI6Ilk0dWVLMm9hSU5RaVFiNVlFQlNZVnlEY3BBVSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg2MTUzMDYzLCJuYmYiOjE0ODYxNTMwNjMsImV4cCI6MTQ4NjE1Njk2MywiYWNyIjoiMSIsImFpbyI6IkFRQUJBQUVBQUFEUk5ZUlEzZGhSU3JtLTRLLWFkcENKYW9oVlA3OHZQQVI5cDBBWm9VQ3dCc2hvRmlBVS1UdnVqMVJRbnFWWEp3NDQ4OERPXzQ0QmcwajlOUXFweXBvMTFRRWZNQ0k2Yk50bHlSOFJ1M0dxdE5IR1dJcHlTdWNIVnl6NUcwUnl6MGx0OXdmdGFpbjdmSlJTdEQ5ZUc0cllJQUEiLCJhbXIiOlsicHdkIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZV9leHAiOjEwODAwLCJmYW1pbHlfbmFtZSI6IlRlc3QwMiIsImdpdmVuX25hbWUiOiJBREwiLCJpcGFkZHIiOiIxNjcuMjIwLjEuMTM1IiwibmFtZSI6IkFETCBUZXN0MDIiLCJvaWQiOiI5YTIzODYwZS0wM2IwLTRiYWQtYThiNy1lMWQwODFkNTkyYmQiLCJwbGF0ZiI6IjE0IiwicHVpZCI6IjEwMDNCRkZEOUQ5MjRBMDUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJXWHFWNGlKaE5zUnlOT2ZhUDA2QUhxbkZCUmVWMFJVbGJNdDVuRkpRZjhJIiwidGlkIjoiNmU2MDZlY2UtM2E1YS00Njc0LWE2NTQtZDZiMDJiYzVhNTFiIiwidW5pcXVlX25hbWUiOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidXBuIjoiYWRsc3ZjMDJAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInZlciI6IjEuMCJ9.flzVJ-l7vk6OhfYVtYEbhu9ZtKGVOcRXMl1eirxNL9UlUC19kf-ZKUX0Pqwda1ZqgI2hsenGe4w2OtvVcWPUjGUSm5TprAUipey5Jc07xA7V4RNNrU584nu-wCG9OKBfE9ZsSAjm4Z5K2IDeIovThloCFqSAgQGZM875EBiRRDgl6hbYO9q8F4M_fFuQiPlaF1GC_EH7kWPxW1QVCte1tRPFVve0aaBnjqVQ2vmqCMQV9u9ithyX28NIODI3cFezrSdYcDVvYdJCNpfLKrXYA1izW5I26tbpSqa2D1gZk0LK_FsseO55LiK3QBe194zrT58607oMhOM6yKGqdw_w-A","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJh74UDrF0u3MYOCEuR_gDJ4C4pRxrjP8U5_rWMJnW0_t-FGLyrLMeER0_QPYEGU_qNmNZy7UvaF7PpJCmFNKapDf5KyADW2Gm9rsW_X4CoMtE0vBCYG87luhXQv28e61inokllnwZ782iiDEbNJHvZLGBXOpgPtnRcP_QSNHFu6WZdX0HT_r_V4Bx4TBus1g-TlCBWFTWuC8pfk5Hly7tpFQz44USKrllLBl-fkGlWRdj7vNZm2540F0oEpsvuHWr18MB4K7GW5miuwQeOgOadIENX2SKdMO6CKAL-IuovCPTmaTGGQfvCySeT3-jW_WvgaJe14UvyfdKlmKullvC5gD_88xXAvU2Jx_LxJaM9U2zEdbFWfUVDl07QgT1lQjZNfjczBwW6Er28GOn3XSKZ7AczL53Kwqou3qQpMkLnLLj3VuCbVamllcgcN5GlwwsVpH3gPpgXm4PBHc5ex9aVamr0xgKV8kMRTLgvEcus1HfFseBbBFXBdTLGIctJFLW4Blx0J1FQbDUr0S5duxcbZzE0fLANGFQ8mjRg6QgpHSzolXurgw5wg2LW6N43ad2UXossiJAoLge_WqvyNsEZQ9Io9ckQ1QCw_RegoZJ2gwQ_MEZshPWJH__Q1cY-ptfIAA"}'}
|
||||
body: {string: '{"token_type":"Bearer","scope":"user_impersonation","expires_in":"3599","ext_expires_in":"10800","expires_on":"1490127243","not_before":"1490123343","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImEzUU4wQlpTN3M0bk4tQmRyamJGMFlfTGRNTSIsImtpZCI6ImEzUU4wQlpTN3M0bk4tQmRyamJGMFlfTGRNTSJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDkwMTIzMzQzLCJuYmYiOjE0OTAxMjMzNDMsImV4cCI6MTQ5MDEyNzI0MywiYWNyIjoiMSIsImFpbyI6IlkySmdZR0NVS3JUaU84ZlowTHlnUUZWTStsZlZaclhQWisvWXJhdDhrU2gzWXE1K3N5RUEiLCJhbXIiOlsicHdkIl0sImFwcGlkIjoiMDRiMDc3OTUtOGRkYi00NjFhLWJiZWUtMDJmOWUxYmY3YjQ2IiwiYXBwaWRhY3IiOiIwIiwiZV9leHAiOjEwODAwLCJmYW1pbHlfbmFtZSI6IlRlc3QwMiIsImdpdmVuX25hbWUiOiJBREwiLCJpcGFkZHIiOiIxNjcuMjIwLjAuMTM1IiwibmFtZSI6IkFETCBUZXN0MDIiLCJvaWQiOiI5YTIzODYwZS0wM2IwLTRiYWQtYThiNy1lMWQwODFkNTkyYmQiLCJwbGF0ZiI6IjE0IiwicHVpZCI6IjEwMDNCRkZEOUQ5MjRBMDUiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJXWHFWNGlKaE5zUnlOT2ZhUDA2QUhxbkZCUmVWMFJVbGJNdDVuRkpRZjhJIiwidGlkIjoiNmU2MDZlY2UtM2E1YS00Njc0LWE2NTQtZDZiMDJiYzVhNTFiIiwidW5pcXVlX25hbWUiOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidXBuIjoiYWRsc3ZjMDJAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInZlciI6IjEuMCJ9.vbvKXChMJtWvHb9EWDzHI4_54yQl98hXgC4WXJVdvIngvbS04FHWSjKEK9vVOyzhGDYFou9OmUwoHf7HWVLhnVi_hPkknQOFvXkfKwaFuIDZJJJfpdo_yRY3xah24OXLaSClzdiBtk07z1CxRBCOEhMDK5rILpSM8SrbjHRu160PS6G1Z3WnFAJLToYACLYwPHTBtcl3Y20mqieUsFEbbzSwQvpB5luKtcC__SszZWga98vN6NEg1kN7MR8mpjVLX8SMYFqjbq-9HA6LPrKt2yGQMsxBu0-Y15RNJDvdQZxWr8Hyzvqxot5QumJBT2IKd6IDGPseEdSM9U3yufF8Qw","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJj1yvwVuAYyualyomYqIhMTToCNypWE0p2Tt-GFHpC18_mFx7coqv57ZExjoQaZkEfp5DX0lan44wlqZNZIqYNCC7QsrpLK6h65eyguAsXlaRQUTcJ9q_n8RUPalO4zN2pyMQ1EebYM5-jA47lLY0juxvicqD3DBoB8Y3f6t8ezHf6yOifMnnBq51gEAcZHO3hb2U4uHWoN6GbgtUL6F3kFoRRT0_povstPM3TRg-YeWpbWiqNph8CGDA7c3Vi1Nx_Rr4uPO3i-HF6rzUAyUa_Y7WAOggjOuf5UuD8cNv1GczTt3nx9rBx4TzTxM-AkFE6wTt0q0WUIOVwAKJ0hdlkKWaFXKSW27KfAquwqS1MyQkhZuXUtBQ3tfa6lX3j58LPQ1fDmQX5xiR-aMlTVxUo9fhA2HHORIHMP1v6SYZQNZl3XTGVh02OQG3YRxBvYSkTX2UhczTPjH0HboOQInRSXvzLc8Yr13DEm2vdWBjtoopoZ7viBMq5uHY6UoUFI_tLxE2j8mFWxkfFiEhO9CB1yQ4PDKVS7J8Vk1DBLBbInAZ-hFbTz-0upelkmjcQ50KyIsCnrST0Yg1jUel2Zn4HzuOxwYDYHcPqBEcWZs5jfj9AJYXfviRtsOQ5A-WNAZWSLHgQRcyXJw1iI-8SQTtB_3sbT-FRGhWKinBoehOLbXqGJYy6s7BYzL-jdC2TfK3IAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2523']
|
||||
Content-Length: ['2439']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:22:44 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14:02 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-adpCJRCSuVIYJlBU1zrwxpGNeff5cM-_1EBA2zhv2vm8duMOKDKCJdL79hiq8sbtpr66Lp7ZDKSZvAgJAEy8F7WsAIS2xHaeV8NvelAtzBZnfya-WebI_ykrpecgWoZi3auaNv5PyVx6l-GOTNzTb5ZrDMqmziyQ6BV6V6Qf1bdeJBKwgAA;
|
||||
Set-Cookie: [esctx=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJiFodt2pLs3Qc3NXvkect0vy0_mTMMA8JwZlc1buKT1XVvy-zwJqbBlwW6s5cCGDn4IjCMeD9YYKNAxw9NrgMBrd855GEhO9xG3wZec_xccYR2RHM5DcZHWePPsWUCP9jm-Y-rLaY973EvgqpaGeZD2wAHsCja4z1BhIz_c-QBfIgAA;
|
||||
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: [1d42fc9c-674a-436c-99e6-de3f286b36a4]
|
||||
x-ms-request-id: [5825dd6e-d33d-4821-a171-9ef2a2b7b642]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: resource=https%3A%2F%2Fmanagement.core.windows.net%2F&grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJM6-1vJea6tXLsIVu5mTKbbb8-Z4670O86Ij6VdXclMILFnB3hOgRz_v9crj6Tqg9-D_x62omHIqx-QP-BEWEn-CC_gmpTyVg-9QXIN3pINqUQMsWjrb44EirKnnTivIouY49Nya1QqbnUIY8e-yAlDbRLapEjI2zf-SzigkrcB3bEEqab_9_yFe6RcM86viIygpXT918eM0GFqDG7OcHRAYgw78oL9axuVAzuVOZhN8Q2ysXxed3VZnN8VTy5EJ0p16rq4zahiqcYW-qwSZyjECp4wROFj1dikHf2eOkmn-AxjRO3IZCQ4GUI91iLsTozzkxN7Jyw_auxaH1Vf6pBw6pSHuZYCPM4_vet_4ps3WnZ2wACz8EvJxtP2Db_AYfCrAMrUYIHIPdtnwnSddxsXrMRtmqCsCBw3_n1330R59y439sXelico8bNO0z5UrHt4I4sJ2o1-UXb2TwM9mXMdUFMylHFm-EsrqZZqRsPc-rrHleqoJ57jt5hJaxpcQ7DgGCBF2nfbdvlgfXWv6boWsKmCWrT2ZFEiz5YEn_z_QgbkbYvkjXi6Kai66ESX4S38wqL95wvk4geTrH472oPMQakdzPOYhfuZiUd7uawlSHuIXTmpIhiwpVlXqPJXRfllFCpDtXOgwO2dU8O28zlyAA
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['836']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [d03673f4-8b55-454a-8d2f-d0e68fc29a8c]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"3599","ext_expires_in":"10800","expires_on":"1487807808","not_before":"1487803908","resource":"https://management.core.windows.net/","pwd_exp":"936889","pwd_url":"https://portal.microsoftonline.com/ChangePassword.aspx","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyIsImtpZCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg3ODAzOTA4LCJuYmYiOjE0ODc4MDM5MDgsImV4cCI6MTQ4NzgwNzgwOCwiYWNyIjoiMSIsImFpbyI6Ik5BIiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoxMDgwMCwiZmFtaWx5X25hbWUiOiJUZXN0MDEiLCJnaXZlbl9uYW1lIjoiRGF0YUxha2UiLCJpcGFkZHIiOiIxNjcuMjIwLjAuMTM1IiwibmFtZSI6IkF6dXJlIERhdGEgTGFrZSBUZXN0IEFjY291bnQgMDEiLCJvaWQiOiIyZTZjMDJkMi1hMzY0LTQ1MzAtOTEzNy1kMTc0MDM5OTZjYmYiLCJwbGF0ZiI6IjE0IiwicHVpZCI6IjEwMDNCRkZEOTU1MTEwNEMiLCJzY3AiOiJ1c2VyX2ltcGVyc29uYXRpb24iLCJzdWIiOiJDRnNNTU90d2R3dVQ3QW5BSTBSeVdRVnRrMDhqcGNMSFZXTTAtcDZ6YVgwIiwidGlkIjoiNmU2MDZlY2UtM2E1YS00Njc0LWE2NTQtZDZiMDJiYzVhNTFiIiwidW5pcXVlX25hbWUiOiJhZGxzdmMwMUBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidXBuIjoiYWRsc3ZjMDFAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInZlciI6IjEuMCJ9.4ZAY2j7ZW7XS_2mqkZBQvMxThNM5KLrtI51QFVB8fGcqA-eFCqZCfZZk7tIv3o8ErrByzWyGJ_3ZcvYwS5TbrLXrC6v_c0U7eZZOa8Lu5SKVRWRy6ku_LofbcwXpjuzfMqo698ZzIxq-gUCGThzlOlWct01nfC7CELtYFVYCUucdmPwxwdSSYF3SBEz4EbclwXhJ1SnW4SBMnMLWe0D1N45Dr0-yvS6h9gSLSl4rhdWffODC19aDLwH8hmZ2Tg9XIOkbQdOFzxALdkx7V8ONmaq2wfPivE3k-xKKrFPfdR-8DU8L_XNPdYCtqLVSo_paK5bat2fejJVJkwNNfvsA1Q","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJzlWHCqdRP1jKOPiYz0fa0qWHgPoJfCZuwL-Ys5x6IufxGPol2_kjplBrGtxTD8VVUUXpivIwfVLY0F_KM8tg7BWSbmKDqD-EMvkD7ErFfue5l1THRWFwyh6k156OniQ7qqQzavxUJ-E_Gr6UnwqItirXmYtFh35PywF2_egtGpUC6t7HpAxKviRfj5IJZdozq7posNeliQiLNwa9DleAUYyCFiGLY9uetfcXAx2Z3Mpy9A2-34710qJIBtt6_hyPvzGI6HNQpyo_Mpw62HILKVhugoy13ANmWG9639t5ymc67qs9RqB56AG9GQNUbhxzgzrsxUIByNLF1EMtaVuY8ki8zWC3KHEa33vopnbe4k-8e28EBtr7gD2DEBMUXHQ9j-nQuINDKzkiVo_Z53zchx5pRbAKJD2HQQbd0Zmue1U093EaT2opnNZz-9JLdhQEwaUpkrVDTKeUubkTZ-nj_dqc5Mkk64KxTTQIMoexSYAaU3gyToAAjfRJGbJuLgCF1pA4Jo5dELhixkzekNiiVjgyX-QSAQcbD_09fzdz951W4OdS8g08MMzBJxOBlNfBd-_V4wFtBsV8WIivoL-WlP-jAT3VUzo0nJFF9qETHEyuiNJ0a7bWD9qIBWy0QYMqbNuL_aYHvMev0kJE3N1LLiAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2450']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:56:47 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-adpCJBw3JnazLHNlONXjwYeC9t-LVdBUZdtu0wWFWekK8-MV0j1XS7LLQDBNcTf08tt4exW_jNEVZvNt2-FnD3DxDoZ9GkxWTfzwZBORhKWuJy5lQvQUUkOj8VTwCGUQcqIeY2xEHD5qFsRKOOSBUZC1XjgPPS_pG9hpwYdqtNmA5ESwgAA;
|
||||
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: [d03673f4-8b55-454a-8d2f-d0e68fc29a8c]
|
||||
x-ms-request-id: [bfce04ec-4399-4e38-8b78-8c1aa44b9be3]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJtEu9JVNJuYBhcUXwi2-eFE9krXZcE3P-KfzF66FlPenLUqCy8FtkgjQs4LnVRAkYeRwmcdZLrcsdGMXkE3AqfdAKg1_wjPJ9xsrFpEOak12Oj3UrW4gQbAf_sXg3jaPr2oW4vhLEoWh0XIW8fpxS-rgjpVWe61pRtRQLtF8DxTihkHZnk3jiGkxvzLKInK7ZwohF8Fbt1nQyImsF-6DzGYbLHc1BBfYSIiwC5xfQOMVTKwm7B06nz96G3MPdQmlNA73yl6mOt6uA1DoSREcTrrtp21cR0M9EXn9MKQuw8eu62TISdzVTQhznK_wYm1rLcO8llqyAFLPK921Nt6_eue7BrrhQ-lAbPN0a5qyxGs5vCos_Y_oWOJqzKKHizExfP5mtYy24ZMPPOWF9yDp3YISc3HaQmr8Cek2x3hNj2upD0WfA-KLZGDXuL8ombej0pz5m_AAgz27ziruH76kqaS96DhereKkiocpGP3g68JDMTeLrfamXw-7jJ1MjoJwpbFUdk-mpy7aGuBKZ823Jy0FKlFMl7gcPAh24YpLYMvKNwKIW0IMpT6--YG-XQ4aadDw4sT_crzr0Rvm-u5SeQbqkZyuvQ67PZ_XU6lBvvMN-ksplBgC5nV8nzoB8vdzpIAA
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [85b06d36-5d1c-49c6-8c30-cf778af282b0]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"1487807852","not_before":"1487803952","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyIsImtpZCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg3ODAzOTUyLCJuYmYiOjE0ODc4MDM5NTIsImV4cCI6MTQ4NzgwNzg1MiwiYWNyIjoiMSIsImFpbyI6Ik5BIiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoxMDgwMCwiZmFtaWx5X25hbWUiOiJUZXN0MDIiLCJnaXZlbl9uYW1lIjoiQURMIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjEzNSIsIm5hbWUiOiJBREwgVGVzdDAyIiwib2lkIjoiOWEyMzg2MGUtMDNiMC00YmFkLWE4YjctZTFkMDgxZDU5MmJkIiwicGxhdGYiOiIxNCIsInB1aWQiOiIxMDAzQkZGRDlEOTI0QTA1Iiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiV1hxVjRpSmhOc1J5Tk9mYVAwNkFIcW5GQlJlVjBSVWxiTXQ1bkZKUWY4SSIsInRpZCI6IjZlNjA2ZWNlLTNhNWEtNDY3NC1hNjU0LWQ2YjAyYmM1YTUxYiIsInVuaXF1ZV9uYW1lIjoiYWRsc3ZjMDJAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInVwbiI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ2ZXIiOiIxLjAifQ.TZp1ZWCdRc2BGUSyVZh3BQVGVamPZKZSVAlwP8eqBh1M8z-fKWbvcVBvppVJRYc64LXOhXsP-mSc6qMTOFKUthpv7qbC3PKxPawWWrKftsul14CsUz_aUsBEUCUGhUSQoHbJhLfSJ60c9V-4xT3Y3PFPBJcR-o_GV3qBMyMQK7oxTkrcfMta5kzCZm1Q2kzTjklDIzcPAPSrc6boKLvpqpuiY7KtQy9BvHwr8c_lb0DuxKITxP9Orb9Qajak0BwR8Re4JmaGkrVShGONRxl0rE5aCAkp4gulXxabA-GAugL16KbC1DfQ7rJaHsC3lWibXo7U0B_XUabwnht5H_jQiw","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJKVX3GtHMnN9dia_-CFusbJj41rG_muiSIe8nIPIkpc_eyLHwrxPbopDov4aLEdAqrGNdTKaaDMAQN4raIzfd5k9kcx3kPZ3hElpQ56pHf9kXB4lnERIo61xna6AEwtwNisqoE5EJVAnbmax5uWvQlWBrY-MTP2uy6aW6Gp-tY66FC7YpyP5OME5_yvIW5ODD53WYCwTKle5cBNqTSm_Cpgv1RG4PjEGBaOLt4uRuWEFnZNvhiiTUpkH-0WEqTB8C0NFbr_ckzbM6rb0nWF9I-DsQf-i6iXlohW0qMm04WqFsUPejEh2zwQtkCVaKHvJbQuZnlUzCO5I8MYrY5RDNXM-mXABDNNEqKNGaqtBb1hFvPAgz1tZ4B0ig_hxwzWdQPnPbF5VInCVRV4Nugkb3SYffD_FgtS38Qr_b_PKrFXtKz6WqONzIkJ064GF-JMdkV6ljPGG6Px45FyLA4BzMW5ObtAsi93iX-_k8OMq1f6nD1Hh-3YEzGjDG3IFDk_iXV0q-BUpk_OZUlFp0mY-3gn2khm8sYpP1mr-GmzVTGV98_VAZyN_2E1WYJop2hcEs7tHjiNSr-C4peYBcXyLtVXCHI8OA5loxqcGoyacElwId-zPW-OvgdIU9tjSW2Iw9IAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2309']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 22:57:33 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-adpCJtU2T9lkoo7MFpEZ308EkQ9YjKG74uVHMCNJdiF4FsfVkjHyXiZqLpxQ0wTlG8Tb7jgBy-3QV-XDoArJbLOnegjqHvPoLc9PcLqqToorK-RHvgwEvhRba3uiU4HL7Zs1VmClJ5CcTtVWHvEy5C9wfd_NcJTBSoh5vLDlF1E3l0xcgAA;
|
||||
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: [85b06d36-5d1c-49c6-8c30-cf778af282b0]
|
||||
x-ms-request-id: [9be85702-ed94-4b1c-9f8c-ce002bbc249b]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: resource=https%3A%2F%2Fmanagement.core.windows.net%2F&grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJ0bf7LbFcyYqxTlwnBFVrt48v6sju5RkYjMtiKhmavVYEgyqDk0_r13dHJP5HkbftAmsHgXZltH7E99GEWy8mjOH_6QXmceBz5BAcZhmWVHJmk74olCMhukQSFafCl4n89uYo-UuhkasQTA4RAcHYNwj5etAJRLPmROV7GOagnPSrJthHAiclBMzDSDLlSnmun0Rm9IE-kewrPcQN2DvS8zQdpVeOwgyvY_i8UdatRYY_jdHNAfqrjigrmsZKtJk3WNCO0ji3o1AlO5b2YrA2aWhTcm4zyHsPP8TYqD0GFAbBQ1F5AEAIUCfkeS03cHQJSAouKtL8zFe77a0TUbe0FEgaEyhd_7Gb8RW7Zhc05dSDKRNy7T7IMIqRtK_0D-j-s2V3oR59MjwLwAv1Zjz_omnK8GZFSe8ZUGvi_Hf3spXFICsmvubc3WS6BiHEDwxb_EJxQ8QqLmVSedHwLl0khlPzwY5-At1J_lVhXc0_CQGGQkEy99G-GrsV6f2p9dpuLq2EnM_gMGY0awy8BBZcJgZdQfXiGMOcLLLYhMXkZR5la7P8WWjDgBmOY1j0skyh0sQttO03O3CBvgGcovZxDSFs4Po92IXyHbBWskpdf3o6fHrKB_0LoWZ5_MHJ_wIrIAA
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [facf5fe5-09cd-441d-af30-e1321f9d1117]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"1487808015","not_before":"1487804115","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyIsImtpZCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg3ODA0MTE1LCJuYmYiOjE0ODc4MDQxMTUsImV4cCI6MTQ4NzgwODAxNSwiYWNyIjoiMSIsImFpbyI6Ik5BIiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoxMDgwMCwiZmFtaWx5X25hbWUiOiJUZXN0MDIiLCJnaXZlbl9uYW1lIjoiQURMIiwiaXBhZGRyIjoiMTY3LjIyMC4xLjEzNSIsIm5hbWUiOiJBREwgVGVzdDAyIiwib2lkIjoiOWEyMzg2MGUtMDNiMC00YmFkLWE4YjctZTFkMDgxZDU5MmJkIiwicGxhdGYiOiIxNCIsInB1aWQiOiIxMDAzQkZGRDlEOTI0QTA1Iiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiV1hxVjRpSmhOc1J5Tk9mYVAwNkFIcW5GQlJlVjBSVWxiTXQ1bkZKUWY4SSIsInRpZCI6IjZlNjA2ZWNlLTNhNWEtNDY3NC1hNjU0LWQ2YjAyYmM1YTUxYiIsInVuaXF1ZV9uYW1lIjoiYWRsc3ZjMDJAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInVwbiI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ2ZXIiOiIxLjAifQ.IEfVrpjVlnhuEpsH6_8Bdp_yYF_83Tk4lEz8GvlgYDZ1sHsQCho9wSbzNcuCJ2t7jc6FTUDVgZ5_-C8vrqMLae2w7b2cVabd4DMXY5w3zGRWlv0JxygOYXyj8KUxOlgL-M_LfFDhkBueqTs0led5nl9SLHlihDlZLEecuvOHn7Sit4YyNN_QSJYviZGlqTcQM-aYQqaUlJ7ka9z0D_sHqkzrhwt9L_AofM2G4tzOECMsA1S-AHYPGbsq0wqfshykcQWFVKD_r1dWTk3YMBNpBdPlghgOoSJGne92vbusbgyfr6IfVee2prC0Ii7AnQqkf8JCbghoKMw01akiHY0SWw","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJdiP5x_uounov0H97UBlT0joSaWdavJqeZbYZluWRjRMFQli0NXnpWbY3gPVuYUDBviL7bpTwsw8F_-0L3Ks4t3bVdk873PlwMhvWC7TdssgfKoP9alvxvb9MsjZ_16lApc9Dr6o7qvLkKVIvHJU_6Fgz4NflwuWbYHJKncUrfnHZof_dabFqhSuDEICr97o8k56rcyKTerQK3cjI-f0esUFdZtOXxGW1dTWaLb0RwBxyudHFfKeODiF7AryvQomWe_0XMaTrXxhvSTHVS0h1EfJYC-NNnoAqwb8IhxUXQ7ugUOFUm1KfQsHwk2k8a9SjGhvzZViRXw_wxSq4TuhVl7TqxeAlVFjBDQyqcKnslKirGd22PlxGBr9wsE8sFxZXtrVDH4GGXEqE0hWlCj0FVXNng7-6uIn-Roe7yfvEmlP_1wvm3gTKEy1FgHYA2bJyfXRP__u0myIiKTex5IHoToQ_eYg20sjvLXTqV1ReMzq_cHnVqhmEoX2-HeXwfXEJiZjENwfWnhLB3lx2XlYPvHdAZKFddpuQ7KhMzN7ve1KPP8mcsaR7spXx0u7p4jmz26H6J0y7ahXp9qKkcl2o1kGfV9nwyBsTSkCw7nrn_gzzhF6KZXSJaNBHXAzIvnU-IAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2309']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 23:00:15 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-adpCJ9c5-s8APlCp9AkLwhXGr4iieCjBRfJ8QSsBnZx611KFNXW_1GrN6s4zqV-BuCkgYRrK-hl-erwZEKxoLUrN-3AAO6IBRVDgwKfIA6cR9P4wZ7zxCbe1fHcQcsqd2oC0x7G4HMUnfFNV0-3ilqTHFz7GXc-pqBvJlnDYpZ2I-p3cgAA;
|
||||
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: [facf5fe5-09cd-441d-af30-e1321f9d1117]
|
||||
x-ms-request-id: [1f7171b8-a7ef-429e-8197-f11630ac0b15]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJzdIeD3ft3IlzBlzNaNF2ecChl7hb-u2UllI9IaxJEvUtTxZoy-ojqJT3KhJetooLctS-Gnv20wt_38cs--_CxkLJJMYG8s17-W7sqRt7AUw0EITEZJwSPuDxylFkemJ2Q03rk0j6wYvL0HRigRbZUvbdGgeNKTS456bD9fSNjlx-2HkcKRkAPIaKoma35CTq6i5hu7KqtpbE1Xc1n3Rdd7G8kn8I-huPp4MuIpwSHsiNDWAiJmhawYQ9wymOxrg1vteIb5KpPSVti8GgrSvE_03OAiAJ9DGkaqg3gljNP7QuZGEo2y5yK2zgP-uP-I9UpEJzSTJ7WGmCKn5EHPeZKnVVrO1ZJ8ZJXySBOc1REmyI-5J5jbFkRZ0UAO6ql0YCb9oXmDruoCMdzvzA_e8y6hjKeRVWAnCnQsKaWnOT7QNNcoW6dRZGaESYr_EaidDdnoDHgQ1IyjGLFMyh3Q8ErnXsCPCgie7FF_LJUzS6t6wo5IcJFP-WmLDUjquk0NYWCtexMmBDt4eY08F2reZDjWJGCOKr0__9YwtGLjl97BZR5bQ7GK_BgDUAaEq0l27E-0fLT9qc-EUaP8ldZyLxfscCbY1WWEaaFQSj77zBAUZROqkowJFphfhRb96KiMFqIAA&resource=https%3A%2F%2Fmanagement.core.windows.net%2F&grant_type=refresh_token&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [e7168198-2018-43c5-96a0-693ce6ee5afa]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"1487814806","not_before":"1487810906","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyIsImtpZCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg3ODEwOTA2LCJuYmYiOjE0ODc4MTA5MDYsImV4cCI6MTQ4NzgxNDgwNiwiYWNyIjoiMSIsImFpbyI6Ik5BIiwiYW1yIjpbInB3ZCJdLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsImFwcGlkYWNyIjoiMCIsImVfZXhwIjoxMDgwMCwiZmFtaWx5X25hbWUiOiJUZXN0MDIiLCJnaXZlbl9uYW1lIjoiQURMIiwiaXBhZGRyIjoiMTY3LjIyMC4wLjEzNSIsIm5hbWUiOiJBREwgVGVzdDAyIiwib2lkIjoiOWEyMzg2MGUtMDNiMC00YmFkLWE4YjctZTFkMDgxZDU5MmJkIiwicGxhdGYiOiIxNCIsInB1aWQiOiIxMDAzQkZGRDlEOTI0QTA1Iiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiV1hxVjRpSmhOc1J5Tk9mYVAwNkFIcW5GQlJlVjBSVWxiTXQ1bkZKUWY4SSIsInRpZCI6IjZlNjA2ZWNlLTNhNWEtNDY3NC1hNjU0LWQ2YjAyYmM1YTUxYiIsInVuaXF1ZV9uYW1lIjoiYWRsc3ZjMDJAYmVud2dvbGRvdXRsb29rLm9ubWljcm9zb2Z0LmNvbSIsInVwbiI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ2ZXIiOiIxLjAifQ.5kYhKjxFOvwLGShlbhZvBegWrU6uMyCnp13WVUt_4S31zZ_NGQJ5ongUk9xgYdI4Jyfdt3T4IE0AZCuyo-IzasH87H3RnNKZabjkvlw0hGDSMC79ZLBqv1H35rmNBFNkzNdjt4RBJDuY9Ed0sGLf7Wgv-u6c2S9FDBIiS39CtxMZAB-dUFeiFqB-mPongYeS7IWogDRWe8mKBf0FMUU0sNblM-e0o24Fh1xN0fNoHNaS0FwdD6V6ybAT29aNyamh6wFtbxgwiY4ZSCpbdKzYLGBSKAZhya2ydDZxJy8znTyJvLZBW08wpqYeCiOPtb37bpHkPIUy9keSguvg3ktGIA","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJyrmacrOhHoCdSAG1VXQDVpeNMdUNUskFPc944TWaY5LL7tc7eBTEO-iOzc5wDGKm2FF2AOQWqrefJy_aLt53yjyixiCX7dRiLzf67LBcOGsc0aHdWOIQgMGWrVqOq_hL8Z5C6dVWbrY20gYaUSGvHYt9g_NO01ErZETdlzQvFFKV1FltaHHYHaiStWULkIgUNqH_I51dbG7sCMdIESKLDXgb2DJRFKWESRdrPp_VZyR5-PO185dgKzeVQSlwSfSWpC-7fwAeK54mUToQiAosd1939VKkoNwXgsQQgkC08M4Hnrrmo1qmyEG7HwwKlI2pbjNL7QL5iWTeuohKAC1X2BCepysChAt63yl0r9uHPxnAx-7J_JOEeoUAznQEWMvVqVHln_A4V6fCk4H3WXOQi0suB209btkD3nZkDB16c7UKxIbOlkWbBVATxQwuTB7v7W63rJwP1iaC2N4-N1jspl2vAgAXPUXOzbUBuleBvMvEGc6ePwsyeJK8qIMssPhLPWr2LKpYeA0-oKBV1sMYyq34NeKOMNmfC8btvCVxRL3HvRcRLnDCn-3GWM6HcQVC8dyYG23JcdFXLQL8JzFTJxqHpAkABznAlM4r1_AEt1hoewNgVyhS7b92M4vHIRrxIAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2309']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:53:26 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-adpCJNTooJ9RzeREFgG_siTZfAORAUfn_lpu253MuNd2OX4GZZquKyjFt2Wk7mYjb0y6MEOXrOmt-AniwUUwE68U0HNkS6T7EI5ZPmfwEl0GiCBlu6f9c36x5Cn3NejZfqlnaLbowNtw1dq0gawHSeP4bSslC0B36IXBjF6s1WbpSRLsgAA;
|
||||
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: [e7168198-2018-43c5-96a0-693ce6ee5afa]
|
||||
x-ms-request-id: [849d7328-6412-4aab-8175-538f2276a9c2]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: refresh_token=AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJRTDt-d-c6jaqX0tQ_KMer6mZetQA2RrNhwrcUibsYtLvBV3I3QLKdy2YJwohm5IsqFc99P8tkaqz8__c57Wv5kQPVcv7xbySh4HfuscENpPmYb2mXnjBCTb-Ny-d0DNNr8LZUEgW0egu5m3EWh4ZLF6fG1mMkCN5pP-KPM28QidZ8AsAWjHzq0-YCDcfqs93dBWqbXAXo_WSxXjQdtinsgnBGSP27fP2KEmVqqLY0nifxJdmeZvEfvDQqWCCaSAQy-Y1IXkDmMW3B6l61hHwm48OUXczSKum2OxUsxLM8fx_mv9O5yz4CA17g32icVcMMP9XXaOPIx7xlhPzPfjFh-TRTKB0tz--OpmTT1TVDlq0VJOjYrjwF614sE8UduzNcLUqcsykGK9zLGeWlFpdTob5D1Xt3a_O0o_sGl4wdrb0D15kLVNSA2lqECoPlARjJNYfwUCdWCphlYyG-cgipQGt-W4wEjW_2L6eJYY_uJYm_bemgIFVVOtJ0D1HayIH_OTj7HJJ11PysPDO45b-td8uqTFgilANmRL_6GixIM8nFmRv9vC352hih0p6DsgQUIPmMI-tmm9ZVfi41D0wYUe0ucEqWBjg-J_EBlqUUcKR-rdBtXzzpqvulVykYYx3IAA&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46&grant_type=refresh_token&resource=https%3A%2F%2Fmanagement.core.windows.net%2F
|
||||
headers:
|
||||
Accept: ['*/*']
|
||||
Accept-Charset: [utf-8]
|
||||
Accept-Encoding: ['gzip, deflate']
|
||||
Connection: [keep-alive]
|
||||
Content-Length: ['815']
|
||||
User-Agent: [python-requests/2.13.0]
|
||||
client-request-id: [5eb5c9f7-0fcd-4e4c-9a01-820e1fa597f4]
|
||||
content-type: [application/x-www-form-urlencoded]
|
||||
return-client-request-id: ['true']
|
||||
x-client-CPU: [x64]
|
||||
x-client-OS: [win32]
|
||||
x-client-SKU: [Python]
|
||||
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":"3599","ext_expires_in":"10800","expires_on":"1488414279","not_before":"1488410379","resource":"https://management.core.windows.net/","access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyIsImtpZCI6Il9VZ3FYR190TUxkdVNKMVQ4Y2FIeFU3Y090YyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC82ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIvIiwiaWF0IjoxNDg4NDEwMzc5LCJuYmYiOjE0ODg0MTAzNzksImV4cCI6MTQ4ODQxNDI3OSwiYWNyIjoiMSIsImFpbyI6IkFRQUJBQUVBQUFEUk5ZUlEzZGhSU3JtLTRLLWFkcENKcWxfV09YWjdqUHo4c3pYUVBXQ2luRTdKY01GdW9CeHpyWFlCSmtZdEMtcWhJbjdJMkNYUlBjZHVoMUdUT2hOZmljRXdQbE9UV3Bod2NxbkZqcXctSWlBQSIsImFtciI6WyJwd2QiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJlX2V4cCI6MTA4MDAsImZhbWlseV9uYW1lIjoiVGVzdDAyIiwiZ2l2ZW5fbmFtZSI6IkFETCIsImlwYWRkciI6IjE2Ny4yMjAuMS4xMzUiLCJuYW1lIjoiQURMIFRlc3QwMiIsIm9pZCI6IjlhMjM4NjBlLTAzYjAtNGJhZC1hOGI3LWUxZDA4MWQ1OTJiZCIsInBsYXRmIjoiMTQiLCJwdWlkIjoiMTAwM0JGRkQ5RDkyNEEwNSIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IldYcVY0aUpoTnNSeU5PZmFQMDZBSHFuRkJSZVYwUlVsYk10NW5GSlFmOEkiLCJ0aWQiOiI2ZTYwNmVjZS0zYTVhLTQ2NzQtYTY1NC1kNmIwMmJjNWE1MWIiLCJ1bmlxdWVfbmFtZSI6ImFkbHN2YzAyQGJlbndnb2xkb3V0bG9vay5vbm1pY3Jvc29mdC5jb20iLCJ1cG4iOiJhZGxzdmMwMkBiZW53Z29sZG91dGxvb2sub25taWNyb3NvZnQuY29tIiwidmVyIjoiMS4wIn0.3hTMcnPWSpqxwQgmLVhD4qYBBRMPKXB7ltAT9CXN_4EJQMsALNKWKSEds4fABBvIEFk8VS6wyd63bbpWbztMxv2I3a5EKoCxuEVAMqRSxie6kIbfUfqWTOm2R_SHDRn0cXENnkO6uZ6BDHFN5mzF_lpT8lGdvuPPKxydPqM18ssQBmqM-TF5sqHLeBWGNnAdD58FNOlQHMNupUij2HN35ht5uD2d21MZOk7dIKRDmVWW1hfikiTNM1UtpxhWKyuvyO9HwzHLWYKAXtBdZuorlNlTF_C6L-NbIzSUIvL9bqt2CV9b1u2LJXicXrg9-OymGzGRqFNXru3LmrM1SpGtzQ","refresh_token":"AQABAAAAAADRNYRQ3dhRSrm-4K-adpCJXvDWdXu4aX8jvJN17DNHkasIehUnGxdPk5M3kWj50FQTX2DAEFtwgjbpUigAlHCL3B5UT7u18UpDKhvAqVJl5MMnGapGP3DEXPOrCihT8urDHzgjQsJrbOV_HoByv8sMzmlG5wNO3CE_UMJ2EkNAIufm9Lqrd_iSAkQSjZu3q6wS4RuCe782ua5YNk6tRZqA4wPUFA9nb2z_i8-4LycdxcoNJ0zVDvnrpC_0VZq05iNzTLcAfpj3ns43aef8BlJyN__PM9BQ4mMxTRFUJLJLWuhheK4iui-EV-3LPpC6LYwYhilQr2vYTVWs1ZzWlHhnc7GeKNTEjhphuRM_s17LWkI2g0mXbz5zlHN18RYZ511QcHyfTtnoskkEYCVewftqCrfWzi0Ds594XE7jAEHhBOx7ZZhbof9mHZ-UaddabSEVvuvYqiBl0WHePH6fV5f0PBePJU8YG9AHGa55iCcJ9wrnxzfR4BRFz518zY1rXq4TXj8SZ0aNx2kBnuwljC_So_AaL6vei5beynI9pt67zKhxqypeFumBvHpoQRcXBmQZMdSzn4w51sMmOdKTMKIQGYRQUH9B2VUM7RkHWPf6Gsp96wbEjyQDjP14uo7WQ_8BF8pw4iyqCjWuwzYXx9ujIAA"}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-store']
|
||||
Content-Length: ['2466']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:38 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-adpCJ1B4sUtC96WzJf4KIH-HGf92r4cA98HfX_njn30rNS1rabKuXphErNbj9L50s28G2JG91OXO9Tel_fzBKcbmXQTsEF0Nd8CXj3EWarWeQpIogqn0WkdYZ3q_Ic9gsz2aZkrkaH8onRrsegEU8GOD-M30oX83qDNzEYiJrdlW2w8cgAA;
|
||||
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: [5eb5c9f7-0fcd-4e4c-9a01-820e1fa597f4]
|
||||
x-ms-request-id: [c9283a5c-795a-40f9-8b94-044f682f9cb1]
|
||||
client-request-id: [e4b60b4a-88a2-4d83-885f-bd6273bcf305]
|
||||
x-ms-request-id: [dab9bd41-f10a-4578-8265-ab5e7fcd1d00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -5,154 +5,24 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [be41056e-e29d-11e6-9794-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":1485307777465,"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: ['Wed, 25 Jan 2017 01:29: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: [3999f479-9f1c-4b35-af62-bedb533f9d9f]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [6729e3f4-e29e-11e6-bb4e-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":1485307822683,"modificationTime":1485308060748,"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: ['Wed, 25 Jan 2017 01:34:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [cd7f69cb-4488-4907-8f9f-8133f4dd9572]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [84e94a46-ea4e-11e6-aec3-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":1486153169939,"modificationTime":1486153360409,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:22: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: [b83d7857-115b-443d-8788-e6e875f41742]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [acbdfd9c-f952-11e6-b369-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":1486153420480,"modificationTime":1487804412550,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 22 Feb 2017 23:00: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: [4b998b43-25dd-48f9-8663-e09374488584]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7c921074-f962-11e6-899b-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":1486153420480,"modificationTime":1487811201401,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:53: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: [3a789c90-b757-491d-bcb6-f8d49a54ea92]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [3d8bf8de-fed6-11e6-b483-645106422854]
|
||||
x-ms-client-request-id: [8c0a41cc-0e6a-11e7-9021-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488407205506,"modificationTime":1488410675283,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1490121793613,"modificationTime":1490123638828,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Length: ['582']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:24:38 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [61501571-00b3-4180-ac8e-9cdfc0d5b8b1]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [465c9d41-a2ed-458d-a4af-e84250ec0fc7]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -5,102 +5,24 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [84eb814a-e29e-11e6-a85b-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":1485308113891,"modificationTime":1485308113891,"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: ['Wed, 25 Jan 2017 01:35: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: [2b9b5f12-d8c2-4a04-b505-9258da6b66ec]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6e280fa-ea4e-11e6-9c6c-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":1486153420480,"modificationTime":1486153420480,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [807b6fcd-a416-41c3-9ab4-7bee77a226e6]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9f208518-f962-11e6-9afb-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":1487811264818,"modificationTime":1487811264818,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:28 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [4a726921-31f3-4fd8-b690-3b0ab5c71701]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [75852492-fed6-11e6-bd58-645106422854]
|
||||
x-ms-client-request-id: [a58f7908-0e6a-11e7-a75b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488410772351,"modificationTime":1488410772351,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1490123686101,"modificationTime":1490123686101,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Length: ['582']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26:12 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [73880568-6342-4953-827c-451672d7f5c3]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e9726963-3822-49ca-8c24-506999ca94eb]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -5,51 +5,25 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [83532e12-e29e-11e6-9876-645106422854]
|
||||
x-ms-client-request-id: [a468b928-0e6a-11e7-9f26-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1485308107398,"modificationTime":1485308111514,"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"}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1490123680567,"modificationTime":1490123684408,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['552']
|
||||
Content-Length: ['582']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 25 Jan 2017 01:35:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [7ca407b2-19da-40c5-956e-de3e7378127b]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [838dda02-e29e-11e6-9e69-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":1485308107398,"modificationTime":1485308111514,"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: ['Wed, 25 Jan 2017 01:35: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: [60c6a733-343e-45e9-9bb0-5d31058cf7f8]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [c9fab3e9-ac4f-455b-8bd5-fc39ca2b078d]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -58,25 +32,25 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [839f17dc-e29e-11e6-908d-645106422854]
|
||||
x-ms-client-request-id: [a4abf2da-0e6a-11e7-b14d-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=DELETE&recursive=False
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?recursive=True&api-version=2016-11-01&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: ['Wed, 25 Jan 2017 01:35:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [f7db3dde-b0f0-4982-a2f9-4ecc54d40b97]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [e0dc485f-ba5f-4910-9945-862463cb6574]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -84,420 +58,25 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [83b4e998-e29e-11e6-a33a-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: ['Wed, 25 Jan 2017 01:35: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: [5b20c1dd-0923-4e6d-9154-5020dbd3fa99]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [83c64ee4-e29e-11e6-8532-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: ['Wed, 25 Jan 2017 01:35: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: [88fffa5d-268b-4e42-aa89-2efadea847c3]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [83d7b3e6-e29e-11e6-a44c-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 [154fa538-f4fd-41f7-ba4a-7ca6ce4f7e8d][2017-01-24T17:35:12.6066556-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: ['Wed, 25 Jan 2017 01:35:12 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x8309000A']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [154fa538-f4fd-41f7-ba4a-7ca6ce4f7e8d]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 404, message: Not Found}
|
||||
- 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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a5add254-ea4e-11e6-9f56-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":1486153412543,"modificationTime":1486153418705,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [22bf17c5-b4c4-4e56-babe-234c2920dadd]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a5e8cbde-ea4e-11e6-8efa-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":1486153412543,"modificationTime":1486153418705,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [a486c50d-1972-4f11-9c89-74b02b66b887]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a5f9f6b6-ea4e-11e6-b838-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?OP=DELETE&recursive=True
|
||||
response:
|
||||
body: {string: '{"boolean":true}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [b747b8a4-177f-45ef-97c0-8f8af5d13016]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6129b3e-ea4e-11e6-a00b-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['554']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [1cc9bcaf-9290-49f1-8899-154eda5d248f]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a623ece2-ea4e-11e6-91fe-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['554']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [388da98e-4f43-41e2-8794-19b44488d6a6]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6351754-ea4e-11e6-a714-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 [858f0eee-8f83-4403-9453-ef616f135ccc][2017-02-03T12:23:39.8926103-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, 03 Feb 2017 20:23:39 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x8309000A']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [858f0eee-8f83-4403-9453-ef616f135ccc]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 404, message: Not Found}
|
||||
- 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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9dbcfc90-f962-11e6-8cca-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":1487811257765,"modificationTime":1487811262745,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [1436b017-460c-4122-abc7-2938e1a7cb0d]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e02e01c-f962-11e6-83fe-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":1487811257765,"modificationTime":1487811262745,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [eb2aa4b6-7338-4eb0-b0e5-aac235c61841]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e19af14-f962-11e6-8a36-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?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: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [4112286b-3ff3-4697-aaec-5af3bc4c61c0]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e367342-f962-11e6-8d5a-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['813']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [9791643c-bc97-48a2-b1d2-420f4039cfac]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e4c6cb6-f962-11e6-9878-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['813']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [c8cd48e7-5c7e-46b4-9fde-021b518dfd7a]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e62161c-f962-11e6-a53c-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 [c05190b2-a790-40e5-b22b-4afc7ad4bb79][2017-02-22T16:54:24.1628100-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: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x8309000A']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [c05190b2-a790-40e5-b22b-4afc7ad4bb79]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
status: {code: 404, message: Not Found}
|
||||
- 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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7407721a-fed6-11e6-9bbc-645106422854]
|
||||
x-ms-client-request-id: [a4c65840-0e6a-11e7-8826-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488410763184,"modificationTime":1488410770098,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26:10 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [0dcbf440-a933-45c6-8493-e3bde26387c0]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [019fca27-9307-4c55-929f-e14fa1b46c5d]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -505,130 +84,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [745829d4-fed6-11e6-8edd-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488410763184,"modificationTime":1488410770098,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26: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: [59a9c9cf-913d-4a8d-9ee6-6c3b8f519c69]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [746cd680-fed6-11e6-8c1e-645106422854]
|
||||
method: DELETE
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&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: ['Wed, 01 Mar 2017 23:26: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: [401ce7a3-ac58-4f06-873f-cf252419218c]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [7489e812-fed6-11e6-a006-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['876']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26: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: [c62c7417-7955-48c6-8437-de5bf962ced4]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [749f5900-fed6-11e6-a2bf-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['876']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26: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: [e4133e69-6228-4167-86e8-b888e0c4d78a]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [74b48ec6-fed6-11e6-9663-645106422854]
|
||||
x-ms-client-request-id: [a4db7e0a-0e6a-11e7-96b1-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"Folder
|
||||
does not exist: /azure_test_dir [9cad4efa-a08e-4a5c-8ad8-748d5d404726][2017-03-01T15:26:11.6372663-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
|
||||
does not exist: /azure_test_dir [f3ac9487-b4c4-441f-a7e1-dd8ed8200607][2017-03-21T12:14:45.4018185-07: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: ['Wed, 01 Mar 2017 23:26:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14:45 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x8309000A']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [9cad4efa-a08e-4a5c-8ad8-748d5d404726]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [f3ac9487-b4c4-441f-a7e1-dd8ed8200607]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 404, message: Not Found}
|
||||
version: 1
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -5,418 +5,25 @@ interactions:
|
|||
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.2
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [83f21a7e-e29e-11e6-8585-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: ['Wed, 25 Jan 2017 01:35: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: [39734c8f-6a6f-4194-bcbb-33fb330ef2e1]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [849adbec-e29e-11e6-98e2-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: ['Wed, 25 Jan 2017 01:35: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: [f4aafc4f-9197-4e39-9335-0ef4fa3237f9]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [84ae0346-e29e-11e6-b503-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":1485308113891,"modificationTime":1485308113891,"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: ['Wed, 25 Jan 2017 01:35: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: [a11df9fb-6d98-4085-a1df-99dd0ead9af8]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [84bff0f6-e29e-11e6-8e99-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: ['Wed, 25 Jan 2017 01:35: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: [a7310a9b-273d-4359-a75a-85a2150d98e1]
|
||||
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.2
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [84d14294-e29e-11e6-bd87-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":1485308113891,"modificationTime":1485308113891,"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: ['Wed, 25 Jan 2017 01:35: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: [53b3bcf8-96bc-4855-ab61-be964bbc1a14]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a64fdec8-ea4e-11e6-aba9-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['554']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [81106aa3-166c-4607-bb08-76167b81ec0b]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a68e0cee-ea4e-11e6-825d-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, 03 Feb 2017 20:23: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: [23460293-f9cf-4ebb-b202-a53e5439bd47]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6a03536-ea4e-11e6-a7cf-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":1486153420480,"modificationTime":1486153420480,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [7f6cc5d1-8ab7-48bc-a4c7-931933a01e0f]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6b3963a-ea4e-11e6-8a51-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, 03 Feb 2017 20:23: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: [c35bb612-091c-45b3-91b0-fa9eb5b83f16]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [a6c6d05a-ea4e-11e6-b9fe-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":1486153420480,"modificationTime":1486153420480,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['819']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Fri, 03 Feb 2017 20:23: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: [3ffd5d51-ba4f-440e-9731-2f0a3720bfdd]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9e857e14-f962-11e6-b4e2-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['813']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [87155d3d-cf1f-4f32-ae26-f7af7bccd6ce]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9ec50ade-f962-11e6-b442-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: ['Thu, 23 Feb 2017 00:54:23 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [d87f7fac-cf8d-4b15-8cd0-65dc2291e639]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9ed8e1ca-f962-11e6-a851-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":1487811264818,"modificationTime":1487811264818,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:24 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [bb5c79d7-42e0-4d33-8ce6-ec30bc9cae8e]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9eecc9e8-f962-11e6-bea4-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: ['Thu, 23 Feb 2017 00:54:24 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [322e8f60-a3af-4d2b-a3f8-66ffef99871d]
|
||||
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.4
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [9effb5a6-f962-11e6-b453-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":1487811264818,"modificationTime":1487811264818,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487792233444,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf"},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","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: ['1078']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Thu, 23 Feb 2017 00:54:24 GMT']
|
||||
Expires: ['-1']
|
||||
Pragma: [no-cache]
|
||||
Status: ['0x0']
|
||||
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
|
||||
X-Content-Type-Options: [nosniff]
|
||||
x-ms-request-id: [71c62f5d-4cab-4d41-9363-092a02cedd83]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [74d81a92-fed6-11e6-92e3-645106422854]
|
||||
x-ms-client-request-id: [a4fc7528-0e6a-11e7-9698-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['876']
|
||||
Content-Length: ['302']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [3322c9d8-c1d0-465c-a43b-0bc1aee06dab]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [44877c9b-66fe-42f4-8678-ee94a7de4163]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -425,9 +32,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [751f5e4c-fed6-11e6-a4b8-645106422854]
|
||||
x-ms-client-request-id: [a5455248-0e6a-11e7-9285-645106422854]
|
||||
method: PUT
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=MKDIRS
|
||||
response:
|
||||
|
@ -436,14 +43,14 @@ interactions:
|
|||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['16']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [c280d890-33f4-45da-89f3-b59a0bcf6523]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [f50c41be-a0f6-4eb6-84ac-1255423f6a10]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -451,25 +58,25 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [75361aa8-fed6-11e6-9bf0-645106422854]
|
||||
x-ms-client-request-id: [a55afc62-0e6a-11e7-b1bc-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488410772351,"modificationTime":1488410772351,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1490123686101,"modificationTime":1490123686101,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false},{"length":0,"pathSuffix":"tmp","type":"DIRECTORY","blockSize":0,"accessTime":1490054670769,"modificationTime":1490054670769,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":false}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Length: ['582']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [8f954770-6e4d-460c-9c86-182b77f11ab9]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [328426ae-cb98-4d7a-a549-d812c943bf3d]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
- request:
|
||||
body: null
|
||||
|
@ -477,9 +84,9 @@ interactions:
|
|||
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.5
|
||||
User-Agent: [python/3.5.2 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.6
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [754bfea2-fed6-11e6-9e76-645106422854]
|
||||
x-ms-client-request-id: [a56f9634-0e6a-11e7-bc0c-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
|
@ -488,39 +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: ['Wed, 01 Mar 2017 23:26:11 GMT']
|
||||
Date: ['Tue, 21 Mar 2017 19:14: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: [90b9b227-3662-49fc-9364-bd003cd8a887]
|
||||
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.5
|
||||
Azure-Data-Lake-Store-SDK-For-Python]
|
||||
x-ms-client-request-id: [756135d0-fed6-11e6-b0c5-645106422854]
|
||||
method: GET
|
||||
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/.?api-version=2016-11-01&OP=LISTSTATUS
|
||||
response:
|
||||
body: {string: '{"FileStatuses":{"FileStatus":[{"length":0,"pathSuffix":"azure_test_dir","type":"DIRECTORY","blockSize":0,"accessTime":1488410772351,"modificationTime":1488410772351,"replication":0,"permission":"770","owner":"9a23860e-03b0-4bad-a8b7-e1d081d592bd","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":0,"pathSuffix":"begoldsm","type":"DIRECTORY","blockSize":0,"accessTime":1487792233444,"modificationTime":1487895541360,"replication":0,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","aclBit":true},{"length":4,"pathSuffix":"smallfile.txt","type":"FILE","blockSize":268435456,"accessTime":1485971868959,"modificationTime":1485971869016,"replication":1,"permission":"770","owner":"2e6c02d2-a364-4530-9137-d17403996cbf","group":"2e6c02d2-a364-4530-9137-d17403996cbf","msExpirationTime":0,"aclBit":true},{"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","aclBit":true}]}}'}
|
||||
headers:
|
||||
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
|
||||
Content-Length: ['1155']
|
||||
Content-Type: [application/json; charset=utf-8]
|
||||
Date: ['Wed, 01 Mar 2017 23:26: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: [5c55bace-434a-4de3-929b-128fa12a2ce6]
|
||||
x-ms-webhdfs-version: [16.07.18.01]
|
||||
x-ms-request-id: [2e9d3607-07f6-41d1-aeb1-3cff57b28c03]
|
||||
x-ms-webhdfs-version: [16.12.19.00]
|
||||
status: {code: 200, message: OK}
|
||||
version: 1
|
||||
|
|
|
@ -206,6 +206,16 @@ def test_glob_walk(azure):
|
|||
|
||||
assert set(azure.walk(test_dir / 'c')) == set(azure.walk(test_dir / 'c'))
|
||||
|
||||
# test glob and walk with details=True
|
||||
glob_details = azure.glob(test_dir / '*', details=True)
|
||||
|
||||
# validate that the objects are subscriptable
|
||||
assert glob_details[0]['name'] is not None
|
||||
assert glob_details[0]['type'] is not None
|
||||
|
||||
walk_details = azure.walk(test_dir, details=True)
|
||||
assert walk_details[0]['name'] is not None
|
||||
assert walk_details[0]['type'] is not None
|
||||
|
||||
@my_vcr.use_cassette
|
||||
def test_info(azure):
|
||||
|
@ -674,14 +684,12 @@ def test_acl_management(azure):
|
|||
|
||||
# set the full acl
|
||||
new_acl = ','.join(initial_acls['entries'])
|
||||
print(new_acl)
|
||||
new_acl += ',{}'.format(acl_to_add)
|
||||
print(new_acl)
|
||||
azure.set_acl(a, new_acl)
|
||||
|
||||
# get the ACL and ensure it has an additional entry
|
||||
new_acls = azure.get_acl_status(a)
|
||||
assert acl_len + 1 == len(new_acls['entries'])
|
||||
assert acl_len + 2 == len(new_acls['entries'])
|
||||
# assert that the entry is there
|
||||
assert acl_to_add in new_acls['entries']
|
||||
|
||||
|
@ -690,7 +698,7 @@ def test_acl_management(azure):
|
|||
|
||||
# get and validate that it was changed
|
||||
new_acls = azure.get_acl_status(a)
|
||||
assert acl_len + 1 == len(new_acls['entries'])
|
||||
assert acl_len + 2 == len(new_acls['entries'])
|
||||
# assert that the entry is there
|
||||
assert acl_to_modify in new_acls['entries']
|
||||
|
||||
|
@ -699,7 +707,7 @@ def test_acl_management(azure):
|
|||
|
||||
# get and validate that it was changed
|
||||
new_acls = azure.get_acl_status(a)
|
||||
assert acl_len == len(new_acls['entries'])
|
||||
assert acl_len + 1 == len(new_acls['entries'])
|
||||
# assert that the entry is there
|
||||
assert acl_to_modify not in new_acls['entries']
|
||||
|
||||
|
@ -708,7 +716,7 @@ def test_acl_management(azure):
|
|||
|
||||
# get and validate that it was changed
|
||||
new_acls = azure.get_acl_status(a)
|
||||
assert 5 == len(new_acls['entries'])
|
||||
assert 4 == len(new_acls['entries'])
|
||||
|
||||
# remove the full acl and validate the lengths
|
||||
azure.remove_acl(a)
|
||||
|
|
|
@ -11,7 +11,7 @@ import time
|
|||
|
||||
from azure.datalake.store.exceptions import DatalakeRESTException
|
||||
from azure.datalake.store.lib import (
|
||||
refresh_token, DatalakeRESTInterface)
|
||||
DataLakeCredential, DatalakeRESTInterface)
|
||||
|
||||
from tests import settings
|
||||
from tests.testing import my_vcr
|
||||
|
@ -47,11 +47,14 @@ def test_errors(token):
|
|||
@my_vcr.use_cassette
|
||||
def test_auth_refresh(token):
|
||||
assert token.token['access']
|
||||
initial_access = token.token['access']
|
||||
initial_time = token.token['time']
|
||||
time.sleep(3)
|
||||
token2 = refresh_token(token.token)
|
||||
token.refresh_token()
|
||||
token2 = DataLakeCredential(token.token)
|
||||
assert token2.token['access']
|
||||
assert token.token['access'] != token2.token['access']
|
||||
assert token2.token['time'] > token.token['time']
|
||||
assert initial_access != token2.token['access']
|
||||
assert token2.token['time'] > initial_time
|
||||
|
||||
|
||||
@my_vcr.use_cassette
|
||||
|
|
|
@ -150,32 +150,37 @@ def test_download_glob(tempdir, azure):
|
|||
remote_path = test_dir / 'data' / 'a' / '*.csv'
|
||||
down = ADLDownloader(azure, remote_path, tempdir, run=False,
|
||||
overwrite=True)
|
||||
assert len(down.rfiles) == 2
|
||||
file_pair_dict = dict(down._file_pairs)
|
||||
|
||||
assert len(file_pair_dict.keys()) == 2
|
||||
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in down.lfiles]
|
||||
assert lfiles == ['x.csv', 'y.csv']
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in file_pair_dict.keys()]
|
||||
assert sorted(lfiles) == sorted(['x.csv', 'y.csv'])
|
||||
|
||||
remote_path = test_dir / 'data' / '*' / '*.csv'
|
||||
down = ADLDownloader(azure, remote_path, tempdir, run=False,
|
||||
overwrite=True)
|
||||
assert len(down.rfiles) == 4
|
||||
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in down.lfiles]
|
||||
assert lfiles == [
|
||||
file_pair_dict = dict(down._file_pairs)
|
||||
assert len(file_pair_dict.keys()) == 4
|
||||
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in file_pair_dict.keys()]
|
||||
assert sorted(lfiles) == sorted([
|
||||
os.path.join('a', 'x.csv'),
|
||||
os.path.join('a', 'y.csv'),
|
||||
os.path.join('b', 'x.csv'),
|
||||
os.path.join('b', 'y.csv')]
|
||||
os.path.join('b', 'y.csv')])
|
||||
|
||||
remote_path = test_dir / 'data' / '*' / 'z.txt'
|
||||
down = ADLDownloader(azure, remote_path, tempdir, run=False,
|
||||
overwrite=True)
|
||||
assert len(down.rfiles) == 2
|
||||
file_pair_dict = dict(down._file_pairs)
|
||||
assert len(file_pair_dict.keys()) == 2
|
||||
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in down.lfiles]
|
||||
assert lfiles == [
|
||||
lfiles = [os.path.relpath(f, tempdir) for f in file_pair_dict.keys()]
|
||||
assert sorted(lfiles) == sorted([
|
||||
os.path.join('a', 'z.txt'),
|
||||
os.path.join('b', 'z.txt')]
|
||||
os.path.join('b', 'z.txt')])
|
||||
|
||||
|
||||
@my_vcr.use_cassette
|
||||
|
@ -290,34 +295,39 @@ def test_upload_glob(tempdir, azure):
|
|||
local_path = os.path.join(tempdir, 'data', 'a', '*.csv')
|
||||
up = ADLUploader(azure, test_dir, local_path, run=False,
|
||||
overwrite=True)
|
||||
assert len(up.lfiles) == 2
|
||||
|
||||
file_pair_dict = dict(up._file_pairs)
|
||||
assert len(file_pair_dict.keys()) == 2
|
||||
rfiles = [posix(AzureDLPath(f).relative_to(test_dir))
|
||||
for f in up.rfiles]
|
||||
assert rfiles == ['x.csv', 'y.csv']
|
||||
for f in file_pair_dict.values()]
|
||||
assert sorted(rfiles) == sorted(['x.csv', 'y.csv'])
|
||||
|
||||
local_path = os.path.join(tempdir, 'data', '*', '*.csv')
|
||||
up = ADLUploader(azure, test_dir, local_path, run=False,
|
||||
overwrite=True)
|
||||
assert len(up.lfiles) == 4
|
||||
|
||||
file_pair_dict = dict(up._file_pairs)
|
||||
assert len(file_pair_dict.keys()) == 4
|
||||
|
||||
rfiles = [posix(AzureDLPath(f).relative_to(test_dir))
|
||||
for f in up.rfiles]
|
||||
assert rfiles == [
|
||||
for f in file_pair_dict.values()]
|
||||
assert sorted(rfiles) == sorted([
|
||||
posix('a', 'x.csv'),
|
||||
posix('a', 'y.csv'),
|
||||
posix('b', 'x.csv'),
|
||||
posix('b', 'y.csv')]
|
||||
posix('b', 'y.csv')])
|
||||
|
||||
local_path = os.path.join(tempdir, 'data', '*', 'z.txt')
|
||||
up = ADLUploader(azure, test_dir, local_path, run=False,
|
||||
overwrite=True)
|
||||
assert len(up.lfiles) == 2
|
||||
|
||||
file_pair_dict = dict(up._file_pairs)
|
||||
assert len(file_pair_dict.keys()) == 2
|
||||
|
||||
rfiles = [posix(AzureDLPath(f).relative_to(test_dir))
|
||||
for f in up.rfiles]
|
||||
for f in file_pair_dict.values()]
|
||||
|
||||
assert rfiles == [posix('a', 'z.txt'), posix('b', 'z.txt')]
|
||||
assert sorted(rfiles) == sorted([posix('a', 'z.txt'), posix('b', 'z.txt')])
|
||||
|
||||
|
||||
@my_vcr.use_cassette
|
||||
|
|
Загрузка…
Ссылка в новой задаче