繁体   English   中英

Cassandra触发器java.lang.AbstractMethodError

[英]Cassandra Trigger java.lang.AbstractMethodError

嘿,我尝试使用Casssandra触发器进行第一步。 触发器应该只获取突变并将其写入简单的.txt文件,仅此而已。 每当我执行一个isert时,我都会收到以下错误: java.lang.AbstractMethodError:org.apache.cassandra.triggers.invertedindex.augment(Lorg / apache / cassandra / db / partitions / Partition;)Ljava / util / Collection

该代码来自我在互联网上找到的示例。

public class invertedindex implements ITrigger

{//私有静态最终Logger logger = LoggerFactory.getLogger(invertedindex.class); 私有属性properties = loadProperties(); //私有对象数组;

public void augment(ByteBuffer key, ColumnFamily update) throws IOException
{


        PrintWriter pWriter = null; 
        //long millis2;

       // List<RowMutation> mutations = new ArrayList<>();

        String indexKeySpace = properties.getProperty("keyspace");
        String indexColumnFamily = properties.getProperty("table");
        for (IColumn cell : update)
        {
            // Skip the row marker and other empty values, since they lead to an empty key.
            if (cell.value().remaining() > 0)
            {
                pWriter = new PrintWriter(new BufferedWriter(new FileWriter("log_trigger_test.txt",true)));
                RowMutation mutation = new RowMutation(indexKeySpace, cell.value());
               // mutation.add(properties.getProperty("columnfamily"), cell.name(), cell.value(), System.currentTimeMillis();
               // mutations.add(mutation);
               // mutation.addColumnOrSuperColumn(arg0, arg1);
                //System.out.println((mutation.toString()));
                pWriter.println((mutation.toString()));

            }
        }
        pWriter.close();
       // return mutations;

    }

private static Properties loadProperties()
{
    Properties properties = new Properties();
    InputStream stream = invertedindex.class.getClassLoader().getResourceAsStream("invertedindex.properties");
    try
    {
        properties.load(stream);
    }
    catch (Exception e)
    {
        throw new RuntimeException(e);
    }
    finally
    {
        FileUtils.closeQuietly(stream);
    }

    return properties;
}

}

我在这里做错了什么? 并且有关于Casssandra触发器的更多信息吗? 我只发现了一些旧东西?

看来您在使用Cassandra 3.x,但已为3.x之前的版本编写了触发器。 您的触发器应实现以下内容:

    public Collection<Mutation> augment(Partition update);

方法。

此处查看触发器示例了解如何实现3.x触发器。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM