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
|
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: [486298f8-4267-11e7-ae49-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"RemoteException":{"exception":"FileNotFoundException","message":"File/Folder
does not exist: /azure_test_dir/a [1fd1ea1e-9303-4f94-93bd-c0c0c5b91e1a][2017-05-26T16:01:42.5728394-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['237']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:01:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [1fd1ea1e-9303-4f94-93bd-c0c0c5b91e1a]
x-ms-webhdfs-version: [16.12.19.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
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: [48a6e164-4267-11e7-98e2-645106422854]
method: PUT
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?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:01:42 GMT']
Expires: ['-1']
Location: ['https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?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: [2a0a8723-165b-4c08-a616-d859c3416b57]
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: [48d8f1ca-4267-11e7-b77e-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839702760,"modificationTime":1495839702819,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:01:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8c893ae5-8dac-47e7-9d5f-2ff425ab1ad2]
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: [48ee4970-4267-11e7-af80-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839702760,"modificationTime":1495839702819,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:01:42 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [bf5c0914-a8bd-46ab-9456-9cbd2155eec5]
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: [490cfba6-4267-11e7-b449-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839702760,"modificationTime":1495839702819,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:01:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [729c0111-e2bb-430e-b4f2-8f34afdbecda]
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: [492bd21c-4267-11e7-8640-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=OPEN&api-version=2016-11-01&read=true&offset=0&length=1000
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Fri, 26 May 2017 23:01:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [72e7f1f7-40d7-4daa-af8f-fd4775e20bb0]
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: [494952a4-4267-11e7-a5bb-645106422854]
method: GET
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?OP=GETFILESTATUS&api-version=2016-11-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1495839702760,"modificationTime":1495839702819,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 26 May 2017 23:01:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c2c07b4b-d5b0-4a0a-a38c-a5196b821383]
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: [495ce634-4267-11e7-be25-645106422854]
method: DELETE
uri: https://fakestore.azuredatalakestore.net/webhdfs/v1/azure_test_dir/a?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:01:43 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [53edf484-6cf9-420a-8497-5405ed10cae6]
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: [d1acdb38-d194-11e8-814a-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?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/a
[b27745ef-1475-471f-be3f-ae3cc20824ea][2018-10-16T15:42:53.8502165-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['284']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:42:53 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [b27745ef-1475-471f-be3f-ae3cc20824ea]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
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: [d1b6033a-d194-11e8-b9d5-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6d08aab1-6397-4011-a9a8-68f1567550a6&filesessionid=6d08aab1-6397-4011-a9a8-68f1567550a6
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:42:53 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=6d08aab1-6397-4011-a9a8-68f1567550a6&filesessionid=6d08aab1-6397-4011-a9a8-68f1567550a6']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ca3e9ce7-017a-469d-89dc-a1e04678d215]
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: [d1c8b58a-d194-11e8-84ef-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539729773877,"modificationTime":1539729773912,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:42:53 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [0aad3358-1b8b-403f-8b00-9c214f6b55fc]
x-ms-webhdfs-version: [17.04.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: [d1cb1a0c-d194-11e8-82c6-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539729773877,"modificationTime":1539729773912,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:42:53 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [9bc911b1-aa10-4b2d-ab9f-c4e710afcc63]
x-ms-webhdfs-version: [17.04.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: [d1cd72b4-d194-11e8-b10b-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539729773877,"modificationTime":1539729773912,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:42:53 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [a203bdc6-c397-4cee-8f32-153f38620ff7]
x-ms-webhdfs-version: [17.04.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: [d1cfe3c2-d194-11e8-a5d8-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=OPEN&api-version=2018-05-01&offset=0&length=1000&read=true&filesessionid=5e0ffe86-f885-4f63-93c1-c9e439d8c2d4
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Tue, 16 Oct 2018 22:42:54 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ea61956b-b70a-47fc-8611-81b049e7222a]
x-ms-webhdfs-version: [17.04.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: [d1f2dc5c-d194-11e8-9c1e-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1539729773877,"modificationTime":1539729773912,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Tue, 16 Oct 2018 22:42:54 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c93a726e-f093-434f-970e-bf0611c6bcd3]
x-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: [d1f57470-d194-11e8-a55d-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir437f8326-2c53-487e-b0f0-0cd298e9ca49/a?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:42:54 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [dc99ea9b-d433-45cc-b385-aaa09edc324b]
x-ms-webhdfs-version: [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: [72360fb0-dbd6-11e8-be1b-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?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/a
[020aeea8-d20a-4e80-8633-5a61003a22bd][2018-10-29T16:57:52.0660821-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-length: ['284']
content-type: [application/json; charset=utf-8]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x8309000A']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [020aeea8-d20a-4e80-8633-5a61003a22bd]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
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: [723d148f-dbd6-11e8-9e73-000d3a041d7c.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?filesessionid=2e228762-aaf0-4c41-98fe-9c0accf3de1d&write=true&leaseid=2e228762-aaf0-4c41-98fe-9c0accf3de1d&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: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?filesessionid=2e228762-aaf0-4c41-98fe-9c0accf3de1d&write=true&leaseid=2e228762-aaf0-4c41-98fe-9c0accf3de1d&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: [79e8bad5-2aef-4e37-98a1-35146d95e138]
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: [72522330-dbd6-11e8-a58e-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857472106,"modificationTime":1540857472159,"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: ['307']
content-type: [application/json; charset=utf-8]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [7734ee87-412b-4b27-8b3d-0c7ec0c91fb9]
x-ms-webhdfs-version: [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: [72569000-dbd6-11e8-9565-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857472106,"modificationTime":1540857472159,"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: ['307']
content-type: [application/json; charset=utf-8]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [0d342e92-f5af-4f04-b717-7035dd605329]
x-ms-webhdfs-version: [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: [72594f1e-dbd6-11e8-84a9-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857472106,"modificationTime":1540857472159,"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: ['307']
content-type: [application/json; charset=utf-8]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [8dcfb0f2-3332-4b9b-8bc5-4d8b3734e987]
x-ms-webhdfs-version: [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: [725c0e40-dbd6-11e8-9f78-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?filesessionid=88d29aec-6434-467a-a473-bbafe8874370&read=true&length=1000&offset=0&api-version=2018-05-01&OP=OPEN
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
cache-control: ['no-cache, no-cache, no-store, max-age=0']
content-type: [application/octet-stream]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
transfer-encoding: [chunked]
x-content-type-options: [nosniff]
x-ms-request-id: [25ae7c3f-f7d1-4a3a-9596-e8a59361f373]
x-ms-webhdfs-version: [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: [726de88f-dbd6-11e8-8b64-000d3a041d7c.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?api-version=2018-05-01&OP=GETFILESTATUS
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1540857472106,"modificationTime":1540857472159,"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: ['307']
content-type: [application/json; charset=utf-8]
date: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [7b0d9b9b-a1a9-4953-8ff2-8ec04e3d45a2]
x-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: [7270598f-dbd6-11e8-b74c-000d3a041d7c.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir09a10d70-be51-4e07-9161-481937d28385/a?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: ['Mon, 29 Oct 2018 23:57:51 GMT']
expires: ['-1']
pragma: [no-cache]
status: ['0x0']
strict-transport-security: [max-age=15724800; includeSubDomains]
x-content-type-options: [nosniff]
x-ms-request-id: [a3dd923a-20cd-4399-a649-7697a46fcace]
x-ms-webhdfs-version: [17.04.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: [658c01ee-e6d5-11e8-8cc9-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?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/a
[8ee472ae-2c03-4fd8-83fa-fc5d8f097a1e][2018-11-12T15:48:04.1288376-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['284']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8ee472ae-2c03-4fd8-83fa-fc5d8f097a1e]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
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: [65958b6c-e6d5-11e8-821c-000d3a02e7d7.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=015f793b-dfcc-4006-a393-f894f89bb23f&filesessionid=015f793b-dfcc-4006-a393-f894f89bb23f
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:48:03 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=015f793b-dfcc-4006-a393-f894f89bb23f&filesessionid=015f793b-dfcc-4006-a393-f894f89bb23f']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c369004f-59ab-46d4-b590-678a2ee4cda7]
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: [65ad6392-e6d5-11e8-b4ee-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066484163,"modificationTime":1542066484222,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [bdcc00c9-3dfe-4a6f-b300-c3c57f48e554]
x-ms-webhdfs-version: [17.04.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: [65b2287a-e6d5-11e8-81b4-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066484163,"modificationTime":1542066484222,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [4f18fe6b-1092-43c4-b9a8-8fb803cd099d]
x-ms-webhdfs-version: [17.04.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: [65b48b18-e6d5-11e8-b9d3-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066484163,"modificationTime":1542066484222,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f5765288-c63c-41b6-9f50-c50876b4fe18]
x-ms-webhdfs-version: [17.04.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: [65b6eb86-e6d5-11e8-90dc-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=OPEN&api-version=2018-05-01&offset=0&length=1000&read=true&filesessionid=ab5a7df9-8d29-4236-988e-623d17908456
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [01ac38d5-88f3-4398-a5f8-784d5f604c40]
x-ms-webhdfs-version: [17.04.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: [65cc6fb6-e6d5-11e8-a399-000d3a02e7d7.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1542066484163,"modificationTime":1542066484222,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Mon, 12 Nov 2018 23:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [ae3d10c1-b0d2-411e-b779-0cb05b3b26cb]
x-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: [65ced364-e6d5-11e8-927b-000d3a02e7d7.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir22bc5d88-20b0-431d-ba7c-a88cf6baf681/a?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:48:03 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [3658fbed-889c-4f67-a300-3ae12721835f]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [05be536c-25b7-11e9-b7f5-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?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/a
[46b2c8f2-eb03-4ccc-bc54-21c6c61c8cb5][2019-01-31T16:19:22.0449011-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['284']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:19:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [46b2c8f2-eb03-4ccc-bc54-21c6c61c8cb5]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [05fa7d58-25b7-11e9-849e-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=7c0dd35b-542c-46fc-88da-7e7d91478521&filesessionid=7c0dd35b-542c-46fc-88da-7e7d91478521
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:19:21 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=7c0dd35b-542c-46fc-88da-7e7d91478521&filesessionid=7c0dd35b-542c-46fc-88da-7e7d91478521']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [96fca47e-3ccc-44f1-ba2e-132ebe61a284]
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: [06151646-25b7-11e9-abae-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980362173,"modificationTime":1548980362201,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:19:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [5a2658c0-f380-486e-bacf-b5c2a8c51980]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0624ec40-25b7-11e9-8e77-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980362173,"modificationTime":1548980362201,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:19:21 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [e52288c9-f048-432f-b5ac-76ac90f412e1]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [0634dfe8-25b7-11e9-92ff-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980362173,"modificationTime":1548980362201,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:19:22 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [c007ca9c-df88-4762-acfb-2655feaf1171]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [06450652-25b7-11e9-aed7-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=OPEN&api-version=2018-09-01&offset=0&length=1000&read=true&filesessionid=e2f84db4-98b2-40b8-8bfd-0b9f56cd9b12
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Fri, 01 Feb 2019 00:19:22 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [898dcd61-8f9c-4549-b280-c687f266dc6b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [06625074-25b7-11e9-8160-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548980362173,"modificationTime":1548980362201,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 00:19:22 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [20f3ea09-899e-4bb2-a4f0-0e6560f229e7]
x-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: [06724b46-25b7-11e9-8c82-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir4dafa5a0-90c8-45f3-afb6-f48b9df3b8d0/a?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:19:22 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [39cf137c-5804-4a7d-beff-5b16befa30dd]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6b530074-25be-11e9-a32e-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?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/a
[277e7aa6-4f09-4471-8b84-b39377879587][2019-01-31T17:12:18.9529082-08:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['284']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:12:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [277e7aa6-4f09-4471-8b84-b39377879587]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6b8ebaac-25be-11e9-a5b5-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8713495e-8e47-4d81-a13c-f2031ece316c&filesessionid=8713495e-8e47-4d81-a13c-f2031ece316c
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:12:19 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=CREATE&api-version=2018-05-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=8713495e-8e47-4d81-a13c-f2031ece316c&filesessionid=8713495e-8e47-4d81-a13c-f2031ece316c']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8afe0599-3bec-4824-bcec-5094ec247b18]
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: [6bb4c774-25be-11e9-a491-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983539075,"modificationTime":1548983539156,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [9a7fa76f-59bf-423c-9ef0-932efc3f4937]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6bc4affe-25be-11e9-aff4-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983539075,"modificationTime":1548983539156,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [7caeb82a-6e71-4398-88e0-52b7987b8b89]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6bdf57d2-25be-11e9-a7e9-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983539075,"modificationTime":1548983539156,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [f046f2f2-0e45-4693-b0bf-9966b63b978e]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6bf027f4-25be-11e9-95d1-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=OPEN&api-version=2018-05-01&offset=0&length=1000&read=true&filesessionid=da482327-b12e-4f57-b8e4-6508bbbc4fba
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Fri, 01 Feb 2019 01:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [d61281ff-cb9b-4059-b2f9-8a059993c69a]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.41
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [6c1e7acc-25be-11e9-9010-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?OP=GETFILESTATUS&api-version=2018-05-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1548983539075,"modificationTime":1548983539156,"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: ['307']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 01 Feb 2019 01:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [60e5219d-fe7d-43b1-8a98-908ddfc07ac4]
x-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: [6c2e8940-25be-11e9-99f4-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir8db4de56-65b4-40a9-9c48-c118e88508b3/a?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:12:19 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [fafcdf00-f171-40ef-bd3a-c4f39834a82f]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-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: [ecbbb6a6-7358-11e9-aab9-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?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/a
[97473a86-94d2-4885-a1cf-93d07f83e5cb][2019-05-10T12:22:18.1121801-07:00]","javaClassName":"java.io.FileNotFoundException"}}'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Length: ['284']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:22:17 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x8309000A']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [97473a86-94d2-4885-a1cf-93d07f83e5cb]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 404, message: Not Found}
- request:
body: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'
headers:
Accept: ['*/*']
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['1000']
User-Agent: [python/3.6.3 (Windows-10-10.0.14393-SP0) azure.datalake.store.lib/0.0.44
Azure-Data-Lake-Store-SDK-For-Python]
x-ms-client-request-id: [ecf8f098-7358-11e9-9e44-480fcf66f040.0]
method: PUT
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d4bf5942-33fc-4995-8c6a-1cb410e4b425&filesessionid=d4bf5942-33fc-4995-8c6a-1cb410e4b425
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:22:18 GMT']
Expires: ['-1']
Location: ['https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=CREATE&api-version=2018-09-01&overwrite=true&write=true&syncFlag=CLOSE&leaseid=d4bf5942-33fc-4995-8c6a-1cb410e4b425&filesessionid=d4bf5942-33fc-4995-8c6a-1cb410e4b425']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [786e8bc8-dcb9-466c-9708-1c60edd563a0]
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: [ed1edd2e-7358-11e9-b08b-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516138243,"modificationTime":1557516138315,"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: ['306']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [77159ea5-8456-4267-b449-7816c19ed1b6]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-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: [ed2f85ec-7358-11e9-a854-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516138243,"modificationTime":1557516138315,"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: ['306']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [33b512d7-9d6c-4f31-9136-a2db1c5c2d5b]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-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: [ed406a38-7358-11e9-b026-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516138243,"modificationTime":1557516138315,"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: ['306']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8d337597-663d-402d-af1c-4f5cc3d53579]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-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: [ed510254-7358-11e9-a3e2-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=OPEN&api-version=2018-09-01&offset=0&length=1000&read=true&filesessionid=711616f8-7e43-4ccf-9ee6-94347b3f5a77
response:
body: {string: '1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890'}
headers:
Cache-Control: ['no-cache, no-cache, no-store, max-age=0']
Content-Type: [application/octet-stream]
Date: ['Fri, 10 May 2019 19:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
Transfer-Encoding: [chunked]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [23241d53-94e7-4eb1-9b41-d646f0df18c0]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
- request:
body: null
headers:
Accept: ['*/*']
Accept-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: [ed8a920c-7358-11e9-9abf-480fcf66f040.0]
method: GET
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?OP=GETFILESTATUS&api-version=2018-09-01
response:
body: {string: '{"FileStatus":{"length":1000,"pathSuffix":"","type":"FILE","blockSize":268435456,"accessTime":1557516138243,"modificationTime":1557516138315,"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: ['306']
Content-Type: [application/json; charset=utf-8]
Date: ['Fri, 10 May 2019 19:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [bcc44abb-c021-4b18-86e3-ee906ed4ac6a]
x-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: [ed9b4f92-7358-11e9-acce-480fcf66f040.0]
method: DELETE
uri: https://akharitadls.azuredatalakestore.net/webhdfs/v1/azure_python_sdk_test_dir33821775-a81a-422f-be54-bab0b7ce4919/a?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:22:18 GMT']
Expires: ['-1']
Pragma: [no-cache]
Status: ['0x0']
Strict-Transport-Security: [max-age=15724800; includeSubDomains]
X-Content-Type-Options: [nosniff]
x-ms-request-id: [8c7c311e-52f0-411a-b20f-5ccc603f1ec7]
x-ms-webhdfs-version: [17.04.24.00]
status: {code: 200, message: OK}
version: 1
|