Skip to content

Commit

Permalink
Merge pull request #37 from appform-io/ft_hub_server
Browse files Browse the repository at this point in the history
Moved to consolidated hub server
  • Loading branch information
santanusinha authored Jun 14, 2024
2 parents dbfe4da + 395b134 commit 936c214
Show file tree
Hide file tree
Showing 30 changed files with 585 additions and 607 deletions.
9 changes: 3 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,9 @@
<module>ranger-http-client</module>
<module>ranger-server-common</module>
<module>ranger-server-bundle</module>
<module>ranger-zk-server</module>
<module>ranger-http-server</module>
<module>ranger-http-model</module>
<module>ranger-http-server-bundle</module>
<module>ranger-zk-server-bundle</module>
<module>ranger-discovery-bundle</module>
<module>ranger-hub-server-bundle</module>
<module>ranger-server</module>
</modules>

<distributionManagement>
Expand Down Expand Up @@ -241,7 +238,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"iterations" : 4,
"threads" : 1,
"forks" : 3,
"mean_ops" : 773920.400092714
"mean_ops" : 763105.9286163104
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"iterations" : 4,
"threads" : 1,
"forks" : 3,
"mean_ops" : 600324.2457100645
"mean_ops" : 608727.2211847006
}
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ private RangerClient<ShardInfo, MapBasedServiceRegistry<ShardInfo>> buildDiscove
.readValue(data, new TypeReference<ServiceNode<ShardInfo>>() {
});
} catch (IOException e) {
log.warn("Error parsing node data with value {}", new String(data));
log.warn("Error parsing node data with value {} for service: {}", new String(data), serviceName);
}
return null;
})
Expand Down
41 changes: 0 additions & 41 deletions ranger-http-server-bundle/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

37 changes: 0 additions & 37 deletions ranger-http-server/config/local.yml

This file was deleted.

26 changes: 0 additions & 26 deletions ranger-http-server/pom.xml

This file was deleted.

This file was deleted.

59 changes: 59 additions & 0 deletions ranger-hub-server-bundle/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>ranger</artifactId>
<groupId>io.appform.ranger</groupId>
<version>1.0-RC18</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
<modelVersion>4.0.0</modelVersion>

<artifactId>ranger-hub-server-bundle</artifactId>

<properties>
<dropwizard.version>2.0.23</dropwizard.version>
</properties>

<dependencies>
<dependency>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger-http-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger-zk-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger-server-bundle</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.appform.ranger</groupId>
<artifactId>ranger-server-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit 936c214

Please sign in to comment.