test_result.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. C:\Users\Toby\Desktop\arozdfs>arozdfs help
  2. [arozdfs - Distributed File Storage Management Tool for ArOZ Online Cloud System]
  3. This is a command line tool build for the ArOZ Online distributed cloud platform file chunking and redundant data storage.
  4. Please refer to the ArOZ Online Documentaion for more information.
  5. Supported commands:
  6. help --> show all the help information
  7. [Uploading to arozdfs commands]
  8. slice
  9. -infile <filename> --> declare the input file
  10. -slice <filesize> --> declare the slicing filesize
  11. -storepath <pathname> (Optional) --> Relative path for storing the sliced chunk files, default ./{file-uuid}
  12. upload
  13. -storepath <pathname> --> The location where the file chunks are stored
  14. -uuid <file uuid> --> uuid of the file to be uploaded
  15. -vdir <file.index> --> where the file.index should be stored. (Use for file / folder navigation)
  16. -push <remoteDisks.config> (Optional) --> push to a list of clusters and sync file index to other clusters, default ./remoteDisks.config
  17. [Download from arozdfs commands]
  18. download
  19. -vdir <file.index> --> file.index location
  20. -storepath <tmp directory> (Optional) --> define a special directory for caching the downloaded data chunks, default ./tmp
  21. open
  22. -uuid <file uuid> --> the uuid which the file is stored
  23. -outfile <filename> --> filepath for the exported and merged file
  24. -storepath <tmp directory> (Optional)--> the file chunks tmp folder, default ./tmp
  25. -c (Optional) --> remove all stored file chunks after merging the file chunks.
  26. [File Operations]
  27. remove <file.index> --> remove all chunks related to this file index
  28. rename <file.index> <newfile.index> --> rename all records related to this file
  29. move <filepath/file.index> <newpath/file.index> --> move the file to a new path in index directory
  30. [System checking commands]
  31. checkfile <file.index> --> check if a file contains all chunks which has at least two copies of each chunks
  32. rebuild --> Check all files on the system and fix all chunks which has corrupted
  33. migrate <remoteDisks.config> --> Move all chunks from this host to other servers in the list.
  34. C:\Users\Toby\Desktop\arozdfs>arozdfs slice -infile "uploads/test.mp4" -storepath "test" -slice 4
  35. test/ uploads/test.mp4 4 aad94a0e-813d-4cbf-a664-f276b7051bdd
  36. Splitting to 31 pieces.
  37. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_00
  38. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_01
  39. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_02
  40. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_03
  41. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_04
  42. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_05
  43. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_06
  44. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_07
  45. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_08
  46. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_09
  47. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_10
  48. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_11
  49. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_12
  50. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_13
  51. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_14
  52. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_15
  53. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_16
  54. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_17
  55. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_18
  56. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_19
  57. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_20
  58. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_21
  59. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_22
  60. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_23
  61. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_24
  62. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_25
  63. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_26
  64. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_27
  65. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_28
  66. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_29
  67. Split to : chunks/test/aad94a0e-813d-4cbf-a664-f276b7051bdd_30
  68. aad94a0e-813d-4cbf-a664-f276b7051bdd
  69. C:\Users\Toby\Desktop\arozdfs>arozdfs upload -storepath "chunks/test" -uuid "aad94a0e-813d-4cbf-a664-f276b7051bdd" -vdir "test.mp4"
  70. [http://192.168.0.107:8080/private/AOB/]
  71. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_00 uploaded.
  72. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_01 uploaded.
  73. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_02 uploaded.
  74. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_03 uploaded.
  75. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_04 uploaded.
  76. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_05 uploaded.
  77. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_06 uploaded.
  78. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_07 uploaded.
  79. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_08 uploaded.
  80. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_09 uploaded.
  81. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_10 uploaded.
  82. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_11 uploaded.
  83. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_12 uploaded.
  84. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_13 uploaded.
  85. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_14 uploaded.
  86. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_15 uploaded.
  87. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_16 uploaded.
  88. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_17 uploaded.
  89. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_18 uploaded.
  90. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_19 uploaded.
  91. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_20 uploaded.
  92. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_21 uploaded.
  93. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_22 uploaded.
  94. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_23 uploaded.
  95. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_24 uploaded.
  96. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_25 uploaded.
  97. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_26 uploaded.
  98. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_27 uploaded.
  99. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_28 uploaded.
  100. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_29 uploaded.
  101. [OK] chunks\test\aad94a0e-813d-4cbf-a664-f276b7051bdd_30 uploaded.
  102. [OK] All chunks uploaded.
  103. C:\Users\Toby\Desktop\arozdfs>arozdfs download -vdir "test.mp4"
  104. [aad94a0e-813d-4cbf-a664-f276b7051bdd_00 aad94a0e-813d-4cbf-a664-f276b7051bdd_01 aad94a0e-813d-4cbf-a664-f276b7051bdd_02 aad94a0e-813d-4cbf-a664-f276b7051bdd_03 aad94a0e-813d-4cbf-a664-f276b7051bdd_04 aad94a0e-813d-4cbf-a664-f276b7051bdd_05 aad94a0e-813d-4cbf-a664-f276b7051bdd_06 aad94a0e-813d-4cbf-a664-f276b7051bdd_07 aad94a0e-813d-4cbf-a664-f276b7051bdd_08 aad94a0e-813d-4cbf-a664-f276b7051bdd_09 aad94a0e-813d-4cbf-a664-f276b7051bdd_10 aad94a0e-813d-4cbf-a664-f276b7051bdd_11 aad94a0e-813d-4cbf-a664-f276b7051bdd_12 aad94a0e-813d-4cbf-a664-f276b7051bdd_13 aad94a0e-813d-4cbf-a664-f276b7051bdd_14 aad94a0e-813d-4cbf-a664-f276b7051bdd_15 aad94a0e-813d-4cbf-a664-f276b7051bdd_16 aad94a0e-813d-4cbf-a664-f276b7051bdd_17 aad94a0e-813d-4cbf-a664-f276b7051bdd_18 aad94a0e-813d-4cbf-a664-f276b7051bdd_19 aad94a0e-813d-4cbf-a664-f276b7051bdd_20 aad94a0e-813d-4cbf-a664-f276b7051bdd_21 aad94a0e-813d-4cbf-a664-f276b7051bdd_22 aad94a0e-813d-4cbf-a664-f276b7051bdd_23 aad94a0e-813d-4cbf-a664-f276b7051bdd_24 aad94a0e-813d-4cbf-a664-f276b7051bdd_25 aad94a0e-813d-4cbf-a664-f276b7051bdd_26 aad94a0e-813d-4cbf-a664-f276b7051bdd_27 aad94a0e-813d-4cbf-a664-f276b7051bdd_28 aad94a0e-813d-4cbf-a664-f276b7051bdd_29 aad94a0e-813d-4cbf-a664-f276b7051bdd_30]
  105. [http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/ http://192.168.0.107:8080/private/AOB/]
  106. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_26
  107. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_08
  108. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_03
  109. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_29
  110. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_18
  111. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_05
  112. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_23
  113. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_14
  114. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_16
  115. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_19
  116. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_10
  117. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_25
  118. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_21
  119. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_30
  120. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_15
  121. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_09
  122. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_01
  123. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_20
  124. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_11
  125. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_24
  126. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_07
  127. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_06
  128. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_22
  129. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_12
  130. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_04
  131. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_00
  132. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_27
  133. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_13
  134. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_17
  135. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_02
  136. [OK] aad94a0e-813d-4cbf-a664-f276b7051bdd_28
  137. [OK] All chunks downloaded
  138. C:\Users\Toby\Desktop\arozdfs>arozdfs open -uuid aad94a0e-813d-4cbf-a664-f276b7051bdd -outfile tmp/merged.mp4 -c
  139. tmp/ aad94a0e-813d-4cbf-a664-f276b7051bdd tmp/merged.mp4