fixed javadoc; fixed pom files; deleted unnecessary class

This commit is contained in:
jisookim0513 2014-09-30 13:47:35 -07:00
parent 74565c9371
commit 9d7b5d9b0f
8 changed files with 23 additions and 39 deletions

View File

@ -1,3 +1,22 @@
/*
* Druid - a distributed column store.
* Copyright (C) 2012, 2013 Metamarkets Group Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package io.druid.indexer;
import com.fasterxml.jackson.databind.ObjectMapper;

View File

@ -24,7 +24,7 @@ import java.util.Map;
public interface MetadataStorageActionHandler
{
/* Insert stuff. @returns number of entries inserted on success */
/* Insert stuff on the table */
public void insert(
String tableName,
String id,

View File

@ -19,7 +19,6 @@
package io.druid.indexer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.inject.Inject;
import io.druid.timeline.DataSegment;

View File

@ -68,11 +68,6 @@
<groupId>org.jdbi</groupId>
<artifactId>jdbi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.7.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -60,8 +60,8 @@
<module>kafka-eight</module>
<module>rabbitmq</module>
<module>histogram</module>
<module>mysql-storage</module>
<module>postgres-storage</module>
<module>mysql-storage</module>
<module>postgres-storage</module>
</modules>
<dependencyManagement>

View File

@ -68,11 +68,6 @@
<groupId>org.jdbi</groupId>
<artifactId>jdbi</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.7.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>

View File

@ -63,7 +63,7 @@ import java.util.concurrent.atomic.AtomicReference;
@ManageLifecycle
public class DerbyMetadataSegmentManager implements MetadataSegmentManager
{
private static final Logger log = new Logger(SQLMetadataSegmentManager.class);
private static final Logger log = new Logger(DerbyMetadataSegmentManager.class);
private final Object lock = new Object();

View File

@ -1,24 +0,0 @@
/*
* Druid - a distributed column store.
* Copyright (C) 2012, 2013 Metamarkets Group Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package io.druid.db;
public class DerbyMetadataUpdaterJob
{
}