rocksdb dealloc error
See original GitHub issueGreetings!
With the latest master of python-rocksdb
and with v5.18.3 of RocksDB I get this error on exit even when I use column families or not:
AttributeError: 'list' object has no attribute 'clear'
Exception AttributeError: "'list' object has no attribute 'clear'" in 'rocksdb._rocksdb.DB.__dealloc__' ignored
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Segfault without explicit deallocation (python-rocksdb)
I'm using the python-rocksdb library, and encountering a segfault using the python-rocksdb library (which uses Cython). I've been debugging this for a while ......
Read more >c++ - RocksDB Crashing with Assertion failed: (i == 0 ...
I am using the rocksdb version 6.22.1 on iOS and have encountered the error ... The code crashes with the above error and...
Read more >Can rocksdb workloads run in the blobfs of qemu virtual machine ...
Running spdk-rocksdb in bare-mental alone works without a problem, ... Command Set Identifier: NVM (00h) Deallocate: Supported Deallocated/Unwritten Error: ...
Read more >std::pmr::polymorphic_allocator's member function deallocate ...
It analyses the memory which the operation is about to deallocate. If it spots a problem, it will throw an exception.
Read more >rocksdb-master/memory/memkind_kmem_allocator.cc · XX_branch ...
An error occurred while loading commit signatures ... memory-overhead-analysis · rocksdb-master ... void MemkindKmemAllocator::Deallocate(void* p) {.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I recommend to using:
del list[:]
I think the problem is, that I’m using python 2.7 and
list.clear()
is added in python 3.3.