问题标签 [accumulo]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - Accumulo - 将突变集合添加到超出缓冲区限制的批处理写入器
当您将一组 Mutations 添加到总大小超过设置缓冲区的 BatchWriter 时会发生什么?BatchWriter 是否只是说好的,我将处理我设置的内容,然后再处理其余部分?
java - Accumulo - Means of checking BatchWriter progress
Scenario is that I have several threads that ultimately add collections of mutations to specific BatchWriters. I don't want my program to close before all of the mutations are pushed to the Cluster. Is there a way to check the BatchWriter progress or does the BatchWriter stall until it gets through its collection of mutations or am I missing something altogether?
java - Accumulo - MiniAccumuloCluster 连接被拒绝
我正在使用 MiniAccumuloCluster (MAC) 1.5 jar 并试图甚至只是实例化一个 MAC 对象,但似乎无法连接到它。我收到大量类似于以下内容的错误:
并以以下错误结束:
Accumulo.Accumulo.connectoToMiniCluster(第 454 行)是:
有什么建议么?Internet 上大量缺乏 Accumulo 框架的文档,包括 MAC。
hadoop - accumulo init 无法连接到 zookeeper
当我使用以下命令初始化 accumulo 时:accumulo init,出现错误,无法连接到 zookeeper,但是 zookeeper 正在运行:INFO:zookeeper 是 localhost:2181
java - Accumulo - 将值而不是 CharSequences 传递给突变的好处
对于任何给定的 Mutation,序列化对象以创建 Value 对象以传递给所述 Mutation 是否有优势?还是只传递一个 CharSequence (Object.toString()) 作为值更好?
我发现使用 Values 的唯一问题是我必须反序列化 Value 字节数组以获得可用的对象。这会导致某些类型解析的丢失,但最终当我将对象转换为值时,我仍然有一个对象的实例。
我看到的仅存储字符串的问题是类型解析完全丢失,当然忽略字符串,并且因此需要事先了解 Object 类型的第一手知识,以便进行转换(如果有任何形式的分析)将被执行。
任何见解?
hadoop - Accumulo 迭代器 SortedKeyValueIterator 源码
迭代器的源 SortedKeyValueIterator 是如何设置的?在许多迭代器中,我看到了一个初始化 ( init ) 方法和 source.get* 方法,但我没有看到这些方法的具体实现。是否有一个基本迭代器,所有这些迭代器都在我没有看到的基础上实现?
database-schema - 如何将关系模式转换为 Accumulo 模式?
我有一个基本问题,我确信有一个广泛使用的模式。我正在将关系数据库转换为 Accumulo 存储,但在映射关联时遇到了问题。表格如下所示:
我从一个看起来很简单的 Accumulo 模式开始:
问题是每个事件可能有多个评论,每个评论都有自己的 POC。如何将评论与 poc 关联?
java - Accumulo - 获得正确排序的扫描仪结果
有没有办法对从 Scanner 获得的条目进行排序?我遇到的问题是我有后缀索引来减轻重复的行 ID,当我扫描时,我没有得到一个完美的升序列表。例如,我得到如下所示的内容:
正如您所看到的 .881 > .88 ,但正确的行之后放置了大约 30 个条目。有没有办法覆盖排序,或者是否有一种方便的方法可以让扫描仪返回正确排序?
python - 如何将 Accumulo 代理与 python 绑定一起使用?
寻求一些帮助来设置 Accumulo 代理。代理自述文件指向 ../readme 用于构建和安装代理服务器,但 ../readme 没有说明代理 :)
我的目标是制作一个使用代理调用 accumulo api 的小型 python 应用程序的原型。如果有人这样做,我将不胜感激先决条件的简要步骤列表:)
java - Connect to Apache Accumulo via .NET
Currently I succeed to create an Ubuntu virtual machine and install Hadoop, Zookeeper and Accumulo. Now I need to create a test ASP.NET MVC application that reads and writes data to the Accumulo.
I've been looking around for .NET clients or some kind of rest API but my searches where unsuccessful. Any snippet I could find was in Java. So one of the options I am considering at the moment is to convert Java client into .NET library using IKVM.NET.
So my question are
- Is there any .NET provider for Apache Accumulo?
- If no provider, does it expose some kind of REST API to program against?
- If no REST what is the endpoint that I could use (and documentation links if possible) to create .NET provider myself?
- Is converting Java lib a good idea?