8000 Allow startup of arangod with an existing database by jsteemann · Pull Request #14760 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
devel
-----

* Allow startup of arangod with an existing database directory that was missing
the ZkdIndex column family.

* Truncate must not trigger intermediate commits while in a streaming
transaction, because that would be against the assumption that
streaming transactions never do intermediate commits.
Expand Down
2 changes: 1 addition & 1 deletion arangod/RocksDBEngine/RocksDBEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ void RocksDBEngine::start() {
auto const replicatedLogsName = RocksDBColumnFamilyManager::name(
RocksDBColumnFamilyManager::Family::ReplicatedLogs);
auto const zkdIndexName = RocksDBColumnFamilyManager::name(
RocksDBColumnFamilyManager::Family::ReplicatedLogs);
RocksDBColumnFamilyManager::Family::ZkdIndex);

for (auto const& it : cfFamilies) {
auto it2 = std::find(existingColumnFamilies.begin(),
Expand Down
0