Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.hadoop.ozone.debug;

import org.rocksdb.ColumnFamilyDescriptor;
import org.rocksdb.ColumnFamilyHandle;
import org.rocksdb.Options;
import org.rocksdb.RocksDB;
import picocli.CommandLine;

import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.Callable;

/**
* Drop a column Family/Table in db.
*/
@CommandLine.Command(
name = "drop_column_family",
aliases = "drop",
description = "drop column family in db."
)
public class DropTable implements Callable<Void> {

@CommandLine.ParentCommand
private RDBParser parent;

@CommandLine.Option(names = {"-n", "--name"},
description = "column family name.")
private String name;

@Override
public Void call() throws Exception {
List<ColumnFamilyDescriptor> cfs = new ArrayList<>();
final List<ColumnFamilyHandle> columnFamilyHandleList =
new ArrayList<>();
List<byte[]> cfList = RocksDB.listColumnFamilies(new Options(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NIT: Some part of this code is duplicated vs. DBScanner. I am not sure if it's better to move to a common method (as it's a real open not just a readOnlyOpen) but might be...

parent.getDbPath());
byte[] nameByte = name.getBytes(StandardCharsets.UTF_8);
int deleteIndex = -1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess the ArrayList.indexOf() method can be used here.
int deleteIndex = cfList.indexOf(nameByte)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

if (cfList != null) {
for (byte[] b : cfList) {
cfs.add(new ColumnFamilyDescriptor(b));
if (Arrays.equals(b, nameByte)) {
deleteIndex = cfs.size() - 1;
}
}
}
try (RocksDB rocksDB = RocksDB.open(
parent.getDbPath(), cfs, columnFamilyHandleList)) {
rocksDB.dropColumnFamily(
columnFamilyHandleList.get(deleteIndex));
}
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
description = "Parse rocksdb file content",
subcommands = {
DBScanner.class,
ListTables.class
ListTables.class,
DropTable.class
})
public class RDBParser extends GenericCli {

Expand Down