mirror of
https://github.com/apache/druid.git
synced 2025-02-19 00:20:43 +00:00
* support LookupReferencesManager registration of namespaced lookup and eliminate static configurations for lookup from namespecd lookup extensions - druid-namespace-lookup and druid-kafka-extraction-namespace are modified - However, druid-namespace-lookup still has configuration about ON/OFF HEAP cache manager selection, which is not namespace wide configuration but node wide configuration as multiple namespace shares the same cache manager * update KafkaExtractionNamespaceTest to reflect argument signature changes * Add more synchronization functionality to NamespaceLookupExtractorFactory * Remove old way of using extraction namespaces * resolve compile error by supporting LookupIntrospectHandler * Remove kafka lookups * Remove unused stuff * Fix start and stop behavior to be consistent with new javadocs * Remove unused strings * Add timeout option * Address comments on configurations and improve docs * Add more options and update hash key and replaces * Move monitoring to the overriding classes * Add better start/stop logging * Remove old docs about namespace names * Fix bad comma * Add `@JsonIgnore` to lookup factory * Address code review comments * Remove ExtractionNamespace from module json registration * Fix problems with naming and initialization. Add tests * Optimize imports / reformat * Fix future not being properly cancelled on failed initial scheduling * Fix delete returns * Add more docs about whole introspection * Add `/version` introspection point for lookups * Add more tests and address comments * Add StaticMap extraction namespace for testing. Also add a bunch of tests * Move cache system property to `druid.lookup.namespace.cache.type` * Make VERSION lower case * Change poll period to 0ms for StaticMap * Move cache key to bytebuffer * Change hashCode and equals on static map extraction fn * Add more comments on StaticMap * Address comments * Make scheduleAndWait use a latch * Sanity renames and fix imports * Remove extra info in docs * Fix review comments * Strengthen failure on start from warn to error * Address comments * Rename namespace-lookup to lookups-cached-global * Fix injective mis-naming * Also add serde test
150 lines
7.0 KiB
XML
150 lines
7.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Druid - a distributed column store.
|
|
~ Copyright 2012 - 2015 Metamarkets Group Inc.
|
|
~
|
|
~ Licensed 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.
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<artifactId>distribution</artifactId>
|
|
<name>distribution</name>
|
|
<description>distribution</description>
|
|
|
|
<parent>
|
|
<artifactId>druid</artifactId>
|
|
<groupId>io.druid</groupId>
|
|
<version>0.9.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.druid</groupId>
|
|
<artifactId>druid-services</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>pull-deps</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>java</executable>
|
|
<arguments>
|
|
<argument>-classpath</argument>
|
|
<classpath/>
|
|
<argument>-Ddruid.extensions.loadList=[]</argument>
|
|
<argument>-Ddruid.extensions.directory=${project.build.directory}/extensions</argument>
|
|
<argument>-Ddruid.extensions.hadoopDependenciesDir=${project.build.directory}/hadoop-dependencies</argument>
|
|
<argument>io.druid.cli.Main</argument>
|
|
<argument>tools</argument>
|
|
<argument>pull-deps</argument>
|
|
<argument>--clean</argument>
|
|
<argument>--defaultVersion</argument>
|
|
<argument>${project.parent.version}</argument>
|
|
<argument>-l</argument>
|
|
<argument>${settings.localRepository}</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-examples</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-datasketches</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-hdfs-storage</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-histogram</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-kafka-eight</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-kafka-extraction-namespace</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-kafka-indexing-service</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:mysql-metadata-storage</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-lookups-cached-global</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:postgresql-metadata-storage</argument>
|
|
<argument>-c</argument>
|
|
<argument>io.druid.extensions:druid-s3-extensions</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>mysql-tarball</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>tar</executable>
|
|
<arguments>
|
|
<argument>-C</argument>
|
|
<argument>${project.build.directory}/extensions</argument>
|
|
<argument>-czvf</argument>
|
|
<argument>${project.build.directory}/mysql-metadata-storage-${project.parent.version}.tar.gz</argument>
|
|
<argument>mysql-metadata-storage</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>distro-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<finalName>${project.parent.artifactId}-${project.parent.version}</finalName>
|
|
<tarLongFileMode>posix</tarLongFileMode>
|
|
<descriptors>
|
|
<descriptor>src/assembly/assembly.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>download-licenses</id>
|
|
<goals>
|
|
<goal>download-licenses</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|