public static void main()

in src/main/java/com/netflix/bdp/s3mper/metastore/impl/BigTableMetastore.java [158:174]


    public static void main(String[] args) throws Exception {
        Configuration conf = new Configuration();
        FileSystemMetastore fs = Metastore.getFilesystemMetastore(conf);

        fs.initalize(null, conf);

        fs.add(new Path("//hadoopha/tmp/axeltest1"), false);
        fs.add(new Path("//hadoopha/tmp/axeltest2"), false);

        System.out.println("List 1: " +
                fs.list(ImmutableList.of(new Path("//hadoopha/tmp"))));

        fs.delete(new Path("//hadoopha/tmp/axeltest2"));

        System.out.println("List 2: " +
                fs.list(ImmutableList.of(new Path("//hadoopha/tmp"))));
    }