English 中文(简体)
什么是可衡量的?
原标题:What is an SSTable?

在BigTable/GFS和Casses术语中,SSTable的定义是什么?

最佳回答

职业病理学表(从 go角bor出)是主要/价值乳制品的档案,由钥匙分类。

问题回答

“一种可变的地图,从钥匙到价值,在关键和价值都是任意的外壳。 提供业务是为了研究与特定钥匙相关的价值,并在特定的关键范围内对所有关键/价值配对。 在内部,每个SSTable公司都有一系列的区块(通常每个区块面积为64KB,但这是可以想象的)。 用于确定区块的整块指数(在SSTable公司结束时储存);该指数在SSTable开立时被装入记忆中。 可以通过单一磁盘进行盘点:我们首先通过在圆形指数中进行双轨搜索,然后从磁盘中读出适当的栏。 单是,可以完全将SSTable打成记忆,使我们能够在不触及磁盘的情况下进行搜索和扫描。

  • SSTable (engl. Sorted Strings Table) is a file of key/value string pairs, sorted by keys.

  • An SSTable provides a persistent,ordered immutable map from keys to values, where both keys and values are arbitrary byte strings.

  • Internally, each SSTable contains a sequence of blocks (typically
    each block is 64KB in size, but this is configurable).

表格以SSTables的形式储存。

可变现(直接标明给全球商品安全局)是基于关键价值的可变储存。 它储存数据库,每组64KB。

定义:

  • Index of the keys: key and starting location
  • Chunk is a storage unit in GFS, replica management are by chunk

SSTable means sorted string table" based on key- Value pair. 在Casses,SSTables是不可变的,由钥匙分类。





相关问题
What are the differences between NP, NP-Complete and NP-Hard?

What are the differences between NP, NP-Complete and NP-Hard? I am aware of many resources all over the web. I d like to read your explanations, and the reason is they might be different from what s ...

Implementation Detail for Graph Analysis Algorithms

Let s say I have a graph with "heavy" nodes, that is each node is an object that is already carrying a lot of data. I want to do a graph transformation that requires me to calculate a special ...

Worst case running time (Big O)

I have this question, and I don t know how to solve it, because I don t understand it. :( The question is: Programs A and B are analyzed and are found to have worst case running times no ...

RSA cryptosystem

Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003, n=3783667, phi=3779776, e= 61 i got stuck finding d could anyone help me to figure ...

BNF Grammar Derivation

I want to apply rules of BNF Grammar to produce derivation for : a_Num

热门标签