當前位置: 首頁>>代碼示例>>Java>>正文


Java HConstants.DEFAULT_BLOCKSIZE屬性代碼示例

本文整理匯總了Java中org.apache.hadoop.hbase.HConstants.DEFAULT_BLOCKSIZE屬性的典型用法代碼示例。如果您正苦於以下問題:Java HConstants.DEFAULT_BLOCKSIZE屬性的具體用法?Java HConstants.DEFAULT_BLOCKSIZE怎麽用?Java HConstants.DEFAULT_BLOCKSIZE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.apache.hadoop.hbase.HConstants的用法示例。


在下文中一共展示了HConstants.DEFAULT_BLOCKSIZE屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: checkShortCircuitReadBufferSize

/**
 * Check if short circuit read buffer size is set and if not, set it to hbase value.
 * @param conf
 */
public static void checkShortCircuitReadBufferSize(final Configuration conf) {
  final int defaultSize = HConstants.DEFAULT_BLOCKSIZE * 2;
  final int notSet = -1;
  // DFSConfigKeys.DFS_CLIENT_READ_SHORTCIRCUIT_BUFFER_SIZE_KEY is only defined in h2
  final String dfsKey = "dfs.client.read.shortcircuit.buffer.size";
  int size = conf.getInt(dfsKey, notSet);
  // If a size is set, return -- we will use it.
  if (size != notSet) return;
  // But short circuit buffer size is normally not set.  Put in place the hbase wanted size.
  int hbaseSize = conf.getInt("hbase." + dfsKey, defaultSize);
  conf.setIfUnset(dfsKey, Integer.toString(hbaseSize));
}
 
開發者ID:fengchen8086,項目名稱:ditb,代碼行數:16,代碼來源:FSUtils.java


注:本文中的org.apache.hadoop.hbase.HConstants.DEFAULT_BLOCKSIZE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。