All of lore.kernel.org
 help / color / mirror / Atom feed
* OSD memory usage during startup - advice needed
@ 2015-11-19 18:16 Marcin Gibuła
  2015-11-19 20:30 ` Marcin Gibuła
  0 siblings, 1 reply; 3+ messages in thread
From: Marcin Gibuła @ 2015-11-19 18:16 UTC (permalink / raw)
  To: ceph-devel

Hi Ceph devs!

I'm trying to track down and fix huge memory usage when OSD is starting 
after unclean shutdown. Recently, after editing crush map, when 
backfills started, one of our OSDs died (it hit suicide timeout). It was 
also refusing to start again, crashing due to memory allocation failure 
(over 15G used) shortly after start.

Judging from debug output, the problem is in journal recovery, when it 
tries to delete object with huge (several milion keys - it is radosgw 
index* for bucket with over 50mln objects) amount of keys, using 
leveldb's rmkeys_by_prefix() method.

Looking at the source code, rmkeys_by_prefix() batches all operations 
into one list and then submit_transaction() executes them all atomically.

I'd love to write a patch for this issue, but it seems unfixable (or is 
it?) with current API and method behaviour. Could you offer any advice 
on how to proceed?

Backtrace below:

  1: /usr/bin/ceph-osd() [0xacd7ba]
  2: (()+0x10340) [0x7f9713500340]
  3: (gsignal()+0x39) [0x7f971199fcc9]
  4: (abort()+0x148) [0x7f97119a30d8]
  5: (__gnu_cxx::__verbose_terminate_handler()+0x155) [0x7f97122aa535]
  6: (()+0x5e6d6) [0x7f97122a86d6]
  7: (()+0x5e703) [0x7f97122a8703]
  8: (()+0x5e922) [0x7f97122a8922]
  9: (()+0x12b1e) [0x7f9713720b1e]
  10: (tc_new()+0x1e0) [0x7f9713740a00]
  11: (std::string::_Rep::_S_create(unsigned long, unsigned long, 
std::allocator<char> const&)+0x59) [0x7f9712304209]
  12: (std::string::_Rep::_M_clone(std::allocator<char> const&, unsigned 
long)+0x1b) [0x7f9712304dcb]
  13: (std::string::reserve(unsigned long)+0x34) [0x7f9712304e64]
  14: (std::string::append(char const*, unsigned long)+0x4f) 
[0x7f97123050af]
  15: 
(LevelDBStore::LevelDBTransactionImpl::rmkeys_by_prefix(std::string 
const&)+0xcf) [0x97c44f]
  16: 
(DBObjectMap::clear_header(std::tr1::shared_ptr<DBObjectMap::_Header>, 
std::tr1::shared_ptr<KeyValueDB::TransactionImpl>)+0xc1) [0xa63171]
  17: (DBObjectMap::_clear(std::tr1::shared_ptr<DBObjectMap::_Header>, 
std::tr1::shared_ptr<KeyValueDB::TransactionImpl>)+0x91) [0xa682b1]
  18: (DBObjectMap::clear(ghobject_t const&, SequencerPosition 
const*)+0x202) [0xa6b292]
  19: (FileStore::lfn_unlink(coll_t, ghobject_t const&, 
SequencerPosition const&, bool)+0x16b) [0x9154fb]
  20: (FileStore::_remove(coll_t, ghobject_t const&, SequencerPosition 
const&)+0x8b) [0x915f6b]
  21: (FileStore::_do_transaction(ObjectStore::Transaction&, unsigned 
long, int, ThreadPool::TPHandle*)+0x3174) [0x926434]
  22: (FileStore::_do_transactions(std::list<ObjectStore::Transaction*, 
std::allocator<ObjectStore::Transaction*> >&, unsigned long, 
ThreadPool::TPHandle*)+0x64) [0x92a3a4]
  23: (JournalingObjectStore::journal_replay(unsigned long)+0x5cb) 
[0x94355b]
  24: (FileStore::mount()+0x3bb6) [0x9139f6]
  25: (OSD::init()+0x259) [0x6c59b9]
  26: (main()+0x2860) [0x6527e0]
  27: (__libc_start_main()+0xf5) [0x7f971198aec5]
  28: /usr/bin/ceph-osd() [0x66b887]


I also suspect that deleting this object was also somehow responsible 
for initial crash, when OSD hit suicide timeout. Any advices on how to 
debug it further?


* - yes, I am aware of shared indexes, but that bucket was created 
pre-hammer and I can't move migrate it

-- 
mg

P.S. Please CC me, as I'm not subscribed.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: OSD memory usage during startup - advice needed
  2015-11-19 18:16 OSD memory usage during startup - advice needed Marcin Gibuła
@ 2015-11-19 20:30 ` Marcin Gibuła
  2015-11-19 22:26   ` Samuel Just
  0 siblings, 1 reply; 3+ messages in thread
From: Marcin Gibuła @ 2015-11-19 20:30 UTC (permalink / raw)
  To: ceph-devel

[-- Attachment #1: Type: text/plain, Size: 996 bytes --]

> Judging from debug output, the problem is in journal recovery, when it
> tries to delete object with huge (several milion keys - it is radosgw
> index* for bucket with over 50mln objects) amount of keys, using
> leveldb's rmkeys_by_prefix() method.
>
> Looking at the source code, rmkeys_by_prefix() batches all operations
> into one list and then submit_transaction() executes them all atomically.
>
> I'd love to write a patch for this issue, but it seems unfixable (or is
> it?) with current API and method behaviour. Could you offer any advice
> on how to proceed?

Answering myself, could anyone verify if attached patch looks ok? Should 
reduce memory footprint a bit.

When I first read this code, I assumed that data pointed by 
leveldb::Slice have to be reachable until db->Write is called.

However, looking into leveldb and into its source code, there is no such 
requirement - leveldb makes its own copy of key, so we're effectivly 
doubling memory footprint for no reason.

-- 
mg

[-- Attachment #2: leveldb.patch --]
[-- Type: text/plain, Size: 1573 bytes --]

--- a/src/os/LevelDBStore.cc
+++ b/src/os/LevelDBStore.cc
@@ -156,9 +156,8 @@ void LevelDBStore::LevelDBTransactionImpl::set(
   buffers.push_back(to_set_bl);
   bufferlist &bl = *(buffers.rbegin());
   string key = combine_strings(prefix, k);
-  keys.push_back(key);
-  bat.Delete(leveldb::Slice(*(keys.rbegin())));
-  bat.Put(leveldb::Slice(*(keys.rbegin())),
+  bat.Delete(leveldb::Slice(key));
+  bat.Put(leveldb::Slice(key),
          leveldb::Slice(bl.c_str(), bl.length()));
 }

@@ -166,8 +165,7 @@ void LevelDBStore::LevelDBTransactionImpl::rmkey(const string &prefix,
                                                 const string &k)
 {
   string key = combine_strings(prefix, k);
-  keys.push_back(key);
-  bat.Delete(leveldb::Slice(*(keys.rbegin())));
+  bat.Delete(leveldb::Slice(key));
 }

 void LevelDBStore::LevelDBTransactionImpl::rmkeys_by_prefix(const string &prefix)
@@ -177,8 +175,7 @@ void LevelDBStore::LevelDBTransactionImpl::rmkeys_by_prefix(const string &prefix
        it->valid();
        it->next()) {
     string key = combine_strings(prefix, it->key());
-    keys.push_back(key);
-    bat.Delete(*(keys.rbegin()));
+    bat.Delete(key);
   }
 }

diff --git a/src/os/LevelDBStore.h b/src/os/LevelDBStore.h
index 4617c5c..dd248dd 100644
--- a/src/os/LevelDBStore.h
+++ b/src/os/LevelDBStore.h
@@ -175,7 +175,6 @@ public:
   public:
     leveldb::WriteBatch bat;
     list<bufferlist> buffers;
-    list<string> keys;
     LevelDBStore *db;

     LevelDBTransactionImpl(LevelDBStore *db) : db(db) {}

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: OSD memory usage during startup - advice needed
  2015-11-19 20:30 ` Marcin Gibuła
@ 2015-11-19 22:26   ` Samuel Just
  0 siblings, 0 replies; 3+ messages in thread
From: Samuel Just @ 2015-11-19 22:26 UTC (permalink / raw)
  To: Marcin Gibuła; +Cc: ceph-devel

Actually, looks like Xiaoxi beat you to it for infernalis!
42a3ab95ec459042e92198fb061c8393146bd1b4
-Sam

On Thu, Nov 19, 2015 at 12:30 PM, Marcin Gibuła <m.gibula@beyond.pl> wrote:
>> Judging from debug output, the problem is in journal recovery, when it
>> tries to delete object with huge (several milion keys - it is radosgw
>> index* for bucket with over 50mln objects) amount of keys, using
>> leveldb's rmkeys_by_prefix() method.
>>
>> Looking at the source code, rmkeys_by_prefix() batches all operations
>> into one list and then submit_transaction() executes them all atomically.
>>
>> I'd love to write a patch for this issue, but it seems unfixable (or is
>> it?) with current API and method behaviour. Could you offer any advice
>> on how to proceed?
>
>
> Answering myself, could anyone verify if attached patch looks ok? Should
> reduce memory footprint a bit.
>
> When I first read this code, I assumed that data pointed by leveldb::Slice
> have to be reachable until db->Write is called.
>
> However, looking into leveldb and into its source code, there is no such
> requirement - leveldb makes its own copy of key, so we're effectivly
> doubling memory footprint for no reason.
>
> --
> mg
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-11-19 22:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-19 18:16 OSD memory usage during startup - advice needed Marcin Gibuła
2015-11-19 20:30 ` Marcin Gibuła
2015-11-19 22:26   ` Samuel Just

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.