Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 361DA184D1 for ; Fri, 8 May 2015 22:51:01 +0000 (UTC) Received: (qmail 65191 invoked by uid 500); 8 May 2015 22:51:00 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 65114 invoked by uid 500); 8 May 2015 22:51:00 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 64741 invoked by uid 99); 8 May 2015 22:51:00 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 May 2015 22:51:00 +0000 Date: Fri, 8 May 2015 22:51:00 +0000 (UTC) From: "Lars George (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HBASE-13652) Case-insensitivity of file system affects table creation MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Lars George created HBASE-13652: ----------------------------------- Summary: Case-insensitivity of file system affects table creation Key: HBASE-13652 URL: https://issues.apache.org/jira/browse/HBASE-13652 Project: HBase Issue Type: Bug Components: shell Affects Versions: 1.0.0 Environment: HBase standalone mode on Mac OS X. Reporter: Lars George I noticed this on my Mac OS machine: {noformat} hbase(main):003:0> list TABLE 0 row(s) in 0.0260 seconds => [] hbase(main):004:0> create 'TestTable', 'info' 0 row(s) in 0.2830 seconds => Hbase::Table - TestTable hbase(main):005:0> create 'testtable', 'colfam1' 0 row(s) in 0.1750 seconds => Hbase::Table - testtable hbase(main):006:0> list TABLE TestTable TestTable 2 row(s) in 0.0170 seconds => ["TestTable", "TestTable"] hbase(main):007:0> status 'detailed' version 1.0.0 0 regionsInTransition master coprocessors: [] 1 live servers de1-app-mba-1.internal.larsgeorge.com:58824 1431124680152 requestsPerSecond=0.0, numberOfOnlineRegions=4, usedHeapMB=47, maxHeapMB=4062, numberOfStores=4, numberOfStorefiles=0, storefileUncompressedSizeMB=0, storefileSizeMB=0, memstoreSizeMB=0, storefileIndexSizeMB=0, readRequestsCount=16, writeRequestsCount=8, rootIndexSizeKB=0, totalStaticIndexSizeKB=0, totalStaticBloomSizeKB=0, totalCompactingKVs=0, currentCompactedKVs=0, compactionProgressPct=NaN, coprocessors=[] "TestTable,,1431124762491.cb30b003b192aa1d429e5a8e908a2f7d." numberOfStores=1, numberOfStorefiles=0, storefileUncompressedSizeMB=0, storefileSizeMB=0, memstoreSizeMB=0, storefileIndexSizeMB=0, readRequestsCount=0, writeRequestsCount=0, rootIndexSizeKB=0, totalStaticIndexSizeKB=0, totalStaticBloomSizeKB=0, totalCompactingKVs=0, currentCompactedKVs=0, compactionProgressPct=NaN, completeSequenceId=-1, dataLocality=0.0 "hbase:meta,,1" numberOfStores=1, numberOfStorefiles=0, storefileUncompressedSizeMB=0, storefileSizeMB=0, memstoreSizeMB=0, storefileIndexSizeMB=0, readRequestsCount=10, writeRequestsCount=6, rootIndexSizeKB=0, totalStaticIndexSizeKB=0, totalStaticBloomSizeKB=0, totalCompactingKVs=0, currentCompactedKVs=0, compactionProgressPct=NaN, completeSequenceId=-1, dataLocality=0.0 "hbase:namespace,,1431124686536.42728f3a3411b0d8ff21c7a2622d9378." numberOfStores=1, numberOfStorefiles=0, storefileUncompressedSizeMB=0, storefileSizeMB=0, memstoreSizeMB=0, storefileIndexSizeMB=0, readRequestsCount=6, writeRequestsCount=2, rootIndexSizeKB=0, totalStaticIndexSizeKB=0, totalStaticBloomSizeKB=0, totalCompactingKVs=0, currentCompactedKVs=0, compactionProgressPct=NaN, completeSequenceId=-1, dataLocality=0.0 "testtable,,1431124773352.8d461d5069d1c88bc3b26562ab30e333." numberOfStores=1, numberOfStorefiles=0, storefileUncompressedSizeMB=0, storefileSizeMB=0, memstoreSizeMB=0, storefileIndexSizeMB=0, readRequestsCount=0, writeRequestsCount=0, rootIndexSizeKB=0, totalStaticIndexSizeKB=0, totalStaticBloomSizeKB=0, totalCompactingKVs=0, currentCompactedKVs=0, compactionProgressPct=NaN, completeSequenceId=-1, dataLocality=0.0 0 dead servers {noformat} and on the file system there is {noformat} larsgeorge:~$ ls -l hbase/data/default/ total 0 drwxr-xr-x 7 larsgeorge staff 238 May 8 15:39 TestTable {noformat} This should not happen on a case sensitive file system (I presume), so is of marginal importance. But a simple extra check during directory creation could fix this. -- This message was sent by Atlassian JIRA (v6.3.4#6332)