github.com/m3db/m3@v1.5.0/src/cmd/tools/clone_fileset/README.md (about)

     1  # clone_fileset
     2  
     3  `clone_fileset` is a utility to make a copy of a specified fileset.
     4  
     5  # Usage
     6  ```
     7  $ git clone git@github.com:m3db/m3.git
     8  $ make clone_fileset
     9  $ ./bin/clone_fileset -h
    10  
    11  # example usage
    12  # ./clone_fileset                        \
    13    -src-path-prefix /home/rungta          \
    14    -src-block-start 1494856800000000000   \
    15    -src-shard 3850 -src-namespace metrics \
    16    -dest-path-prefix /tmp/m3db-data-copy  \
    17    -dest-block-size 4h                    \
    18    -dest-block-start 1494867491000000     \
    19    -dest-shard 1024                       \
    20    -dest-namespace testmetrics            \
    21  ```
    22