mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 09:07:23 +08:00
rename filer2 to filer
This commit is contained in:
14
weed/filer/cassandra/README.txt
Normal file
14
weed/filer/cassandra/README.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
1. create a keyspace
|
||||
|
||||
CREATE KEYSPACE seaweedfs WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 1};
|
||||
|
||||
2. create filemeta table
|
||||
|
||||
USE seaweedfs;
|
||||
|
||||
CREATE TABLE filemeta (
|
||||
directory varchar,
|
||||
name varchar,
|
||||
meta blob,
|
||||
PRIMARY KEY (directory, name)
|
||||
) WITH CLUSTERING ORDER BY (name ASC);
|
Reference in New Issue
Block a user