0

I have done a snapshot of one of the key space which has 10 column family. There are 10 snapshot folder under each of column family folder.i want to restore these snapshot in one the development server (single node).

How can i easily restore it on a development using sstanbleloader

Dev node is on a Windows 2012 Standard Server Prod is on a Windows 2012 Ent.Edition Server

user2704472
  • 189
  • 1
  • 5
  • 14

1 Answers1

0

You probably don't need to use sstableloader in this case. I think the most straightforward method would be the "Node restart method" described here.

There are plenty of details in the docs, but basically: stop the node, remove data files from data directories, and replace with snapshot files.

Adam Holmberg
  • 7,015
  • 2
  • 28
  • 52
  • Thanks Adam , that's what i did before i posted the question.Could you help me understand when should i use sstableloader – user2704472 Aug 18 '15 at 11:45
  • (1) loading external data (written into SSTable format) into a cluster; (2) when loading data into a cluster with different node count/replication settings; I would always prefer direct placement of the files if they're already on the nodes and replication will be the same. – Adam Holmberg Aug 18 '15 at 15:01