1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462
|
interactions:
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.5.2 (Windows-10-10.0.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [89d49abe-4267-11e7-8017-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_test_dir/littlefile [6681ae3b-1e75-483c-8a00-410f5beb0198][2017-05-26T16:03:32.3518402-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['246']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03:32 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6681ae3b-1e75-483c-8a00-410f5beb0198]
x-ms-webhdfs-version: [16.12.19.00]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a14f728-4267-11e7-b5d7-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_test_dir/littlefile [fba85d97-89a0-4d6f-8ab3-dde0554124bc][2017-05-26T16:03:32.7673679-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['246']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03:32 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [fba85d97-89a0-4d6f-8ab3-dde0554124bc]
x-ms-webhdfs-version: [16.12.19.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.5.2 (Windows-10-10.0.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a54d5e8-4267-11e7-b676-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&api-version=2016-11-01&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, 26 May 2017 23:03:32 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=CREATE&api-version=2016-11-01&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: [3d0666e3-5b3b-47d2-997c-496da3155c0c]
x-ms-webhdfs-version: [16.12.19.00]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a800f2e-4267-11e7-a11c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839812918,"modificationTime":1495839812965,"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: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [03354fe3-4448-4a7e-8345-36767b360dea]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8a93c154-4267-11e7-ac75-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_test_dir/bigfile [a8e2cfe6-ad43-4227-a70f-d352c85adb20][2017-05-26T16:03:33.3206168-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['243']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03:33 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a8e2cfe6-ad43-4227-a70f-d352c85adb20]
x-ms-webhdfs-version: [16.12.19.00]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8aa833b6-4267-11e7-8647-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_test_dir/bigfile [1e74de59-f6b3-4c4d-b3af-816669be23a0][2017-05-26T16:03:33.7306536-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['243']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03:32 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1e74de59-f6b3-4c4d-b3af-816669be23a0]
x-ms-webhdfs-version: [16.12.19.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.5.2 (Windows-10-10.0.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8ae6808a-4267-11e7-9b46-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&api-version=2016-11-01&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, 26 May 2017 23:03:33 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=CREATE&api-version=2016-11-01&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: [0f422cca-5061-4721-a12c-1e14ae347790]
x-ms-webhdfs-version: [16.12.19.00]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b134bf4-4267-11e7-811c-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839813873,"modificationTime":1495839813920,"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: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [edc3026d-001d-41c4-bb41-d61322c98cdf]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b275f82-4267-11e7-9924-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839813873,"modificationTime":1495839813920,"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: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [242b6eba-bf14-4149-a632-74a8badb986a]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b3bac36-4267-11e7-806f-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/bigfile?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: ['Fri, 26 May 2017 23:03: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: [a02bfa7f-772d-490c-a741-baf027698e72]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b59a6c6-4267-11e7-90f3-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":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1495839812918,"modificationTime":1495839812965,"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: ['334']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [ba5e2c6b-d46b-475f-9d77-68db1b0d7da0]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b6e226c-4267-11e7-ad9b-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839812918,"modificationTime":1495839812965,"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: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [ab45a031-e07c-4c7c-a47e-d79a044e6e20]
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.15063-SP0) azure.datalake.store.lib/0.0.10
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [8b81f42c-4267-11e7-a44f-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/littlefile?OP=DELETE&api-version=2016-11-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:03: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: [69953029-5f9f-4503-9db7-6f881cc0a89c]
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.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9671ad8a-d195-11e8-b394-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile
[b358f30d-514f-4178-82ab-ce4772d3c4ce][2018-10-16T15:48:23.9694602-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48: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: [b358f30d-514f-4178-82ab-ce4772d3c4ce]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [9679eaf6-d195-11e8-a77d-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile
[5a823c55-3302-43be-a907-cf2eca4fad1b][2018-10-16T15:48:24.0177890-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48: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: [5a823c55-3302-43be-a907-cf2eca4fad1b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96820152-d195-11e8-bdd9-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=68861c04-465c-4d38-8c13-a1e686e73d24&filesessionid=68861c04-465c-4d38-8c13-a1e686e73d24
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 16 Oct 2018 22:48:23 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=68861c04-465c-4d38-8c13-a1e686e73d24&filesessionid=68861c04-465c-4d38-8c13-a1e686e73d24']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [abe0c7a7-67f3-4a5d-b056-5ce11ac4eee2]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [969896b4-d195-11e8-a2d6-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539730104050,"modificationTime":1539730104080,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:23 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [36661733-2b90-483f-a0de-02c7fb639143]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [969b399e-d195-11e8-a0f3-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile
[4a4babaf-ab9f-46c4-b006-ca013a4d1320][2018-10-16T15:48:24.2038660-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48: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: [4a4babaf-ab9f-46c4-b006-ca013a4d1320]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [969da828-d195-11e8-8912-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile
[92c6f7dc-4cf7-49d0-81ed-56541f5c81c6][2018-10-16T15:48:24.2550853-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48: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: [92c6f7dc-4cf7-49d0-81ed-56541f5c81c6]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96a60ca8-d195-11e8-aafb-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0dafb50c-784a-4924-9ea9-3af4091c0bb9&filesessionid=0dafb50c-784a-4924-9ea9-3af4091c0bb9
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Tue, 16 Oct 2018 22:48:23 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0dafb50c-784a-4924-9ea9-3af4091c0bb9&filesessionid=0dafb50c-784a-4924-9ea9-3af4091c0bb9']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [aba81c56-9791-4520-8e33-1ae93d9e8b32]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96bc2fe8-d195-11e8-8cc6-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539730104298,"modificationTime":1539730104348,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8b968734-401e-48cc-877f-1ea8a54f163c]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96bee9ca-d195-11e8-8a9d-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539730104298,"modificationTime":1539730104348,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [67c0b340-aea3-4a97-a861-b30ef01d159f]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96c18192-d195-11e8-acff-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/bigfile?OP=DELETE&api-version=2018-05-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: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4a8dc6a3-8e16-469d-8019-798b5bc12ec9]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96c7c322-d195-11e8-ad07-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1539730104050,"modificationTime":1539730104080,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['334']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1342f8b3-f5e6-4bb7-96fa-2016eb003a9c]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96caffa4-d195-11e8-ad32-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539730104050,"modificationTime":1539730104080,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a2c721eb-be6d-4071-be92-c2caf04ef536]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [96cdbec6-d195-11e8-81fb-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/littlefile?OP=DELETE&api-version=2018-05-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:48:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f7c6fb87-f1be-460a-8f34-edebf75668fa]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [510f510f-dbd7-11e8-b51d-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile
[73f34957-9abd-4fca-ab31-f0b53565ce57][2018-10-29T17:04:05.9552318-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['293']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04:05 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x8309000A']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [73f34957-9abd-4fca-ab31-f0b53565ce57]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [5116cb21-dbd7-11e8-abda-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile
[348a8cee-6ecf-4353-8db3-8bf5871cd045][2018-10-29T17:04:06.0091469-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['293']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04:05 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x8309000A']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [348a8cee-6ecf-4353-8db3-8bf5871cd045]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [511e6c40-dbd7-11e8-be9c-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?filesessionid=c10b26bf-05d6-451e-853f-cecafb7c9966&write=true&leaseid=c10b26bf-05d6-451e-853f-cecafb7c9966&api-version=2018-05-01&syncFlag=CLOSE&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: ['Tue, 30 Oct 2018 00:04:06 GMT']
expires: ['-1']
location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?filesessionid=c10b26bf-05d6-451e-853f-cecafb7c9966&write=true&leaseid=c10b26bf-05d6-451e-853f-cecafb7c9966&api-version=2018-05-01&syncFlag=CLOSE&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: [b827942b-b4ad-4eea-8357-dd72ad2ddc74]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [5144b8ee-dbd7-11e8-bb44-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857846045,"modificationTime":1540857846118,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['305']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04: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: [78554df3-e76d-44c6-99a2-3ef22a105601]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51479f1e-dbd7-11e8-868e-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile
[78ce03da-c014-4197-aad9-ddce7f3a3e27][2018-10-29T17:04:06.2989861-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['290']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04:05 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x8309000A']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [78ce03da-c014-4197-aad9-ddce7f3a3e27]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [514a5e40-dbd7-11e8-b041-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile
[9f6c4212-6601-4178-bc11-f88361196a46][2018-10-29T17:04:06.3414055-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['290']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04:05 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x8309000A']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [9f6c4212-6601-4178-bc11-f88361196a46]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [5151b140-dbd7-11e8-91db-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?filesessionid=d8f79505-c49f-4024-a6a8-2d39d61d7d10&write=true&leaseid=d8f79505-c49f-4024-a6a8-2d39d61d7d10&api-version=2018-05-01&syncFlag=CLOSE&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: ['Tue, 30 Oct 2018 00:04:05 GMT']
expires: ['-1']
location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?filesessionid=d8f79505-c49f-4024-a6a8-2d39d61d7d10&write=true&leaseid=d8f79505-c49f-4024-a6a8-2d39d61d7d10&api-version=2018-05-01&syncFlag=CLOSE&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: [03133e63-a5db-486e-b22b-abc346ac24d3]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51b6185e-dbd7-11e8-b60f-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857846817,"modificationTime":1540857846857,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['308']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04: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: [f98875a5-2a2f-43c8-9e50-f072ab4b7763]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51c09fb0-dbd7-11e8-8109-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857846817,"modificationTime":1540857846857,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['308']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04: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: [1c91513d-46cb-47ec-82a7-5c84a2d42e46]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51d33d4f-dbd7-11e8-b60e-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/bigfile?api-version=2018-05-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: ['Tue, 30 Oct 2018 00:04: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: [c18d40aa-3c5b-4536-9d4b-f38543cf2ba2]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51dd9d8f-dbd7-11e8-92d3-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385?api-version=2018-05-01&listSize=4000&OP=LISTSTATUS
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1540857846045,"modificationTime":1540857846118,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['334']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04: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: [34ff6a9f-b62b-406e-9dbe-6736723f4c3f]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51e1470f-dbd7-11e8-b065-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857846045,"modificationTime":1540857846118,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['305']
content-type: [application/json; charset=utf-8]
date: ['Tue, 30 Oct 2018 00:04: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: [b8704620-137d-4e16-b775-167f49124b39]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/2.7.13 (Windows-10-10.0.14393) azure.datalake.store.lib/0.0.34
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [51e3df1e-dbd7-11e8-a62b-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/littlefile?api-version=2018-05-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: ['Tue, 30 Oct 2018 00:04: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: [503173cc-b658-4476-a945-6498c39740e6]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b45f8c8-e6d6-11e8-813b-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile
[6ea0e0e2-075c-4656-830c-237854719977][2018-11-12T15:54:02.6994781-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54:01 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6ea0e0e2-075c-4656-830c-237854719977]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b4d1ec0-e6d6-11e8-bb1a-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile
[ce3d7701-ee49-4d2d-a1ba-401db6360d06][2018-11-12T15:54:02.7441254-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54:01 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ce3d7701-ee49-4d2d-a1ba-401db6360d06]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b56aaf8-e6d6-11e8-89e8-000d3a02e7d7.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1eeef52a-0125-40d8-8fbc-0eda1e2c8788&filesessionid=1eeef52a-0125-40d8-8fbc-0eda1e2c8788
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Mon, 12 Nov 2018 23:54:02 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=1eeef52a-0125-40d8-8fbc-0eda1e2c8788&filesessionid=1eeef52a-0125-40d8-8fbc-0eda1e2c8788']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0b92ef4a-0b1f-4ed5-b4ab-275ff6555ea2]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b7f313a-e6d6-11e8-9cd8-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066842787,"modificationTime":1542066842916,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [fc7bf234-46c4-46fd-8685-9d81309e289b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b81a702-e6d6-11e8-9a0a-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile
[97e63937-a95a-494d-aea7-85e1743acd09][2018-11-12T15:54:03.0588624-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54:02 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [97e63937-a95a-494d-aea7-85e1743acd09]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b86577a-e6d6-11e8-a665-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile
[39b9029e-bfc0-4b02-a9b3-69031bc2e35b][2018-11-12T15:54:03.1231388-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54:02 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [39b9029e-bfc0-4b02-a9b3-69031bc2e35b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3b8d7ede-e6d6-11e8-8116-000d3a02e7d7.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5aa74631-ae95-468d-8c8e-a5db36087962&filesessionid=5aa74631-ae95-468d-8c8e-a5db36087962
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Mon, 12 Nov 2018 23:54:02 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5aa74631-ae95-468d-8c8e-a5db36087962&filesessionid=5aa74631-ae95-468d-8c8e-a5db36087962']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [2a3d2de6-5853-414e-a540-3417943db607]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bb86976-e6d6-11e8-aeac-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066843156,"modificationTime":1542066843216,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [8762504e-d88e-4d67-b553-984f2ebfd9e9]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bbacae4-e6d6-11e8-9113-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066843156,"modificationTime":1542066843216,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [19c4af02-7509-491a-a0b1-12cbeb8243b0]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bbf914c-e6d6-11e8-8caf-000d3a02e7d7.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/bigfile?OP=DELETE&api-version=2018-05-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: ['Mon, 12 Nov 2018 23:54: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: [d2e2ac92-5205-48e0-b4a1-52b7f8dd5834]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bc919c6-e6d6-11e8-ac2c-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1542066842787,"modificationTime":1542066842916,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['334']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [fccb23ab-8a64-4b95-8b5c-06051c8bc2b2]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bcddeda-e6d6-11e8-9245-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066842787,"modificationTime":1542066842916,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [18a691bb-137d-4713-81a3-f6dbdfca4fcd]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.7.0 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.37
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [3bd0411e-e6d6-11e8-8fb9-000d3a02e7d7.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/littlefile?OP=DELETE&api-version=2018-05-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:54: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: [971b7c4c-04b0-4248-89c6-46f4e19e83f5]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [01ba0aa8-25b8-11e9-9f51-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile
[c9d56a70-b5a7-4965-9b4b-ac28e0e5e8ea][2019-01-31T16:26:24.8032517-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c9d56a70-b5a7-4965-9b4b-ac28e0e5e8ea]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [01f59c50-25b8-11e9-8e48-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile
[a396f4c8-8d58-4001-8e37-a5474f2505a8][2019-01-31T16:26:25.1957553-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26:24 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a396f4c8-8d58-4001-8e37-a5474f2505a8]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [02316b62-25b8-11e9-bcfb-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6cca2656-9044-4ee3-a1e2-95e7ba4491d8&filesessionid=6cca2656-9044-4ee3-a1e2-95e7ba4491d8
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 01 Feb 2019 00:26:24 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6cca2656-9044-4ee3-a1e2-95e7ba4491d8&filesessionid=6cca2656-9044-4ee3-a1e2-95e7ba4491d8']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5f68f177-2fed-4a4f-9764-ca94247091f0]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0261c4f6-25b8-11e9-885e-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980785336,"modificationTime":1548980785383,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [28ec5afa-f2be-45f3-9d23-eaa2083a01bb]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0272893a-25b8-11e9-bd2e-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile
[f6a9d7cc-85f7-460c-815b-5cc90bc37b54][2019-01-31T16:26:25.7407980-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26:25 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f6a9d7cc-85f7-460c-815b-5cc90bc37b54]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0283128a-25b8-11e9-906c-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile
[8509b5b9-0b77-49b6-95cd-c86eefcb92d6][2019-01-31T16:26:26.1342380-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26:26 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8509b5b9-0b77-49b6-95cd-c86eefcb92d6]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [02be89cc-25b8-11e9-8975-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0114ffc0-5d2e-4ce1-aacf-80866c9c0e7e&filesessionid=0114ffc0-5d2e-4ce1-aacf-80866c9c0e7e
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 01 Feb 2019 00:26:26 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=0114ffc0-5d2e-4ce1-aacf-80866c9c0e7e&filesessionid=0114ffc0-5d2e-4ce1-aacf-80866c9c0e7e']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3eb4faaa-b31a-4d15-84ed-476c8c012c73]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [02eeeb74-25b8-11e9-9700-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980786252,"modificationTime":1548980786306,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [24ac9a2b-4a15-4e1b-b0a4-d8ec58ae2b3d]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [02ff6c48-25b8-11e9-8fb3-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980786252,"modificationTime":1548980786306,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [a9a46a06-453d-4c3c-bbe3-0453fd7b3e8b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [030fc546-25b8-11e9-9f36-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/bigfile?OP=DELETE&api-version=2018-09-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: ['Fri, 01 Feb 2019 00:26: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: [c64dbf86-820b-4bdf-b189-b3cbb73f804a]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0323553e-25b8-11e9-86d1-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000
response:
body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1548980785336,"modificationTime":1548980785383,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['357']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [f6ba1beb-e8b9-4e9e-a2e4-fefebc1ccce5]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [03359488-25b8-11e9-b684-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980785336,"modificationTime":1548980785383,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [03fddf54-d63c-42da-ab7f-638a60b4b6d4]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [03474ee2-25b8-11e9-87e3-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/littlefile?OP=DELETE&api-version=2018-09-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:26: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: [2620582e-463f-49d1-847a-60c65049157a]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6cf48e22-25bf-11e9-b434-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile
[14649e9b-d96e-4785-89ef-da4506f87db7][2019-01-31T17:19:31.1802565-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19:30 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [14649e9b-d96e-4785-89ef-da4506f87db7]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6d2f4942-25bf-11e9-ad57-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile
[c59e25fe-5e4a-4f20-83bf-8792b1ee609e][2019-01-31T17:19:31.5785780-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19:30 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c59e25fe-5e4a-4f20-83bf-8792b1ee609e]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6d6b3834-25bf-11e9-b10e-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=437d131a-f592-4008-aad8-755e322e4d36&filesessionid=437d131a-f592-4008-aad8-755e322e4d36
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 01 Feb 2019 01:19:30 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=437d131a-f592-4008-aad8-755e322e4d36&filesessionid=437d131a-f592-4008-aad8-755e322e4d36']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [12eae33e-3db5-4a17-8238-8e108dfc66d9]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6d9b16fe-25bf-11e9-bd75-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983971710,"modificationTime":1548983971750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [b58eefcc-18ae-4061-95fc-09c9341af042]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6dabbc6e-25bf-11e9-90c2-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile
[40df394f-5c93-4e60-8dad-7048ed0a9c54][2019-01-31T17:19:32.1021650-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19:31 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [40df394f-5c93-4e60-8dad-7048ed0a9c54]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6dbc4db8-25bf-11e9-bdec-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile
[0fb95553-2f12-4529-935d-61ec8471f2b3][2019-01-31T17:19:32.4951904-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19:31 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0fb95553-2f12-4529-935d-61ec8471f2b3]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6df7ee76-25bf-11e9-a557-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3b2f5443-6342-4385-9009-4dd02e0bc4bc&filesessionid=3b2f5443-6342-4385-9009-4dd02e0bc4bc
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 01 Feb 2019 01:19:31 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=3b2f5443-6342-4385-9009-4dd02e0bc4bc&filesessionid=3b2f5443-6342-4385-9009-4dd02e0bc4bc']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8f723b81-b0ea-438f-95bb-9f4237fe3d70]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e18c2de-25bf-11e9-b78f-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983972624,"modificationTime":1548983972651,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [3e16b863-2109-49aa-b851-dce9f8c75f3d]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e29b5e2-25bf-11e9-82bf-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983972624,"modificationTime":1548983972651,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['308']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [c9128431-1583-4226-bf79-364245629b8a]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e3a81d0-25bf-11e9-b34c-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/bigfile?OP=DELETE&api-version=2018-05-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: ['Fri, 01 Feb 2019 01:19: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: [613d6d44-2824-4d67-a6eb-38be640d6959]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e4f0b74-25bf-11e9-b53f-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3?OP=LISTSTATUS&api-version=2018-05-01&listSize=4000
response:
body: {string: '{"FileStatuses":{"FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1548983971710,"modificationTime":1548983971750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['334']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [da8a8fb7-5e37-4ccb-956a-bc420913bc98]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e6073be-25bf-11e9-80fd-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983971710,"modificationTime":1548983971750,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"6d86a146-d7dc-49d0-862f-1897c5dd2afe","msExpirationTime":0,"aclBit":false}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['305']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [bee27751-e658-44f9-b3b8-c46ba362447b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6e710506-25bf-11e9-9c60-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/littlefile?OP=DELETE&api-version=2018-05-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:19: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: [c79c3d09-7a46-420f-a9b3-46c09010e822]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd0bbc70-7359-11e9-b8a8-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile
[d55f9846-bcb9-4666-a38e-f26b46a487aa][2019-05-10T12:29:54.9807222-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29:54 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d55f9846-bcb9-4666-a38e-f26b46a487aa]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd4a9376-7359-11e9-a542-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile
[c62ccbb8-9f14-486e-b25c-f846bd2b95ad][2019-05-10T12:29:55.4031356-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['293']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29:54 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c62ccbb8-9f14-486e-b25c-f846bd2b95ad]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0123456789
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fd8ab9f0-7359-11e9-a368-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5b28742a-38c0-468e-a7e1-7fc3280053a9&filesessionid=5b28742a-38c0-468e-a7e1-7fc3280053a9
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 10 May 2019 19:29:54 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=5b28742a-38c0-468e-a7e1-7fc3280053a9&filesessionid=5b28742a-38c0-468e-a7e1-7fc3280053a9']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [6355269a-c8ad-49c5-8b3a-cef7fcaf66be]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fdb6c894-7359-11e9-ab8e-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516595544,"modificationTime":1557516595575,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['304']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [17c605ab-8b48-463f-9851-cc0805e8b73a]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fdc8d1b4-7359-11e9-9b17-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile
[1b700862-3ad9-4218-9b66-0878ea58b7a4][2019-05-10T12:29:55.9338693-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29:55 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1b700862-3ad9-4218-9b66-0878ea58b7a4]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fddabd74-7359-11e9-8598-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile
[39f31ada-6639-4c71-ac0b-ea75d3b4cb32][2019-05-10T12:29:56.3407243-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['290']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29:56 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [39f31ada-6639-4c71-ac0b-ea75d3b4cb32]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555556666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888889999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['10000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe190194-7359-11e9-9b6d-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=88e6a202-9bbf-4ccb-8915-5309321f4e86&filesessionid=88e6a202-9bbf-4ccb-8915-5309321f4e86
response:
body: {string: ''}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['0']
ContentLength: ['0']
Date: ['Fri, 10 May 2019 19:29:56 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=88e6a202-9bbf-4ccb-8915-5309321f4e86&filesessionid=88e6a202-9bbf-4ccb-8915-5309321f4e86']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [48581083-9a91-44e1-9bd9-a541a3ca4d49]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 201, message: Created}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe46d974-7359-11e9-abdc-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516596491,"modificationTime":1557516596512,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [9c1ecfb0-d120-4279-beba-35535388ae42]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe58e042-7359-11e9-a07c-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516596491,"modificationTime":1557516596512,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [af755939-b955-42c3-bbd5-2e40f5d9e49e]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe6b0eac-7359-11e9-9fb3-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/bigfile?OP=DELETE&api-version=2018-09-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: ['Fri, 10 May 2019 19:29: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: [97ee9490-ed5f-4b9f-8e7c-a010d79a6219]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe7f271e-7359-11e9-a0f9-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919?OP=LISTSTATUS&api-version=2018-09-01&listSize=4000
response:
body: {string: '{"FileStatuses":{"continuationToken":"","FileStatus":[{"length":10,"pathSuffix":"littlefile","type":"FILE","blockSize":268435456,"accessTime":1557516595544,"modificationTime":1557516595575,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}]}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['356']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [e2e7938e-a6cd-47fb-9925-1ed844769a1b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fe91b75c-7359-11e9-a573-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":10,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516595544,"modificationTime":1557516595575,"replication":1,"permission":"770","owner":"a0b3cb87-9ca9-4769-af48-e687823d8937","group":"00000000-0000-0000-0000-000000000000","msExpirationTime":0,"aclBit":true}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['304']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [051dd479-3339-4695-ab27-5c225656241e]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [fea3b358-7359-11e9-9961-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/littlefile?OP=DELETE&api-version=2018-09-01&recursive=True
response:
body: {string: '{"boolean":true}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['16']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:29: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: [871d4564-a3fa-47b1-8bcd-d836d371b87c]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
version: 1
|