You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
walnuts1018 82b76fc9eb
feat: add TLS configuration options for Cassandra2 store
6 days ago
..
README.txt add cassandra2 (#6582) 11 months ago
cassandra_store.go feat: add TLS configuration options for Cassandra2 store 6 days ago
cassandra_store_kv.go chore: execute goimports to format the code (#7983) 1 week ago

README.txt

1. create a keyspace

CREATE KEYSPACE seaweedfs WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 1};

2. create filemeta table

USE seaweedfs;

CREATE TABLE filemeta (
dirhash bigint,
directory varchar,
name varchar,
meta blob,
PRIMARY KEY ((dirhash, directory), name)
) WITH CLUSTERING ORDER BY (name ASC);