在cassandra复制表

时间:2014-06-12 11:54:50

标签: cassandra cassandra-2.0 cqlsh

我正在使用以下命令来处理数据

COPY events.standardevents (uuid, data, name, time, tracker, type, userid) TO 'temp.csv'; 

truncate standardevents;

COPY event.standardeventstemp (uuid, data, name, time, tracker, type, userid) FROM 'temp.csv';

我以两种不同的方式尝试了上述事情

一个表包含一个作为uuid的fiend和一个没有uuid的表..

没有uuid以上的东西工作正常,但是用uuid它不起作用..

有人可以告诉我该如何解决这个问题?

收到错误:

错误请求:无效的STRING常量(3a1ccec0-ef77-11e3-9e56-22000ae3163a) uuid类型的名称

在第0列中止导入,以前插入的值仍然存在。

CREATE TABLE standardevents (
  uuid uuid PRIMARY KEY,
  data text,
  name text,
  time text,
  tracker text,
  type text,
  userid text
) WITH
  bloom_filter_fp_chance=0.010000 AND
  caching='KEYS_ONLY' AND
  comment='' AND
  dclocal_read_repair_chance=0.000000 AND
  gc_grace_seconds=864000 AND
  read_repair_chance=0.100000 AND
  replicate_on_write='true' AND
  populate_io_cache_on_flush='false' AND
  compaction={'class': 'SizeTieredCompactionStrategy'} AND
  compression={'sstable_compression': 'SnappyCompressor'};

1 个答案:

答案 0 :(得分:0)

你问了两次这个问题,这里已经回答了这个问题:

copy one table to another in cassandra