-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ViciousCycleStudy
authored and
ViciousCycleStudy
committed
May 6, 2023
0 parents
commit 77d421f
Showing
36 changed files
with
3,636 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
Deadly Retries/hbase-instrumentation-master/build-hbase-0.x.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
cd instrument-libs | ||
mvn clean verify | ||
cd .. | ||
mvn clean verify -P 0.x | ||
cp target/hbase-instrumentation-1.0-SNAPSHOT.jar ./ | ||
cp instrument-libs/target/instrument-libs-1.0-SNAPSHOT.jar ./ |
7 changes: 7 additions & 0 deletions
7
Deadly Retries/hbase-instrumentation-master/build-hbase-2.x.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
cd instrument-libs | ||
mvn clean verify | ||
cd .. | ||
mvn clean verify -P 2.x | ||
cp target/hbase-instrumentation-1.0-SNAPSHOT.jar ./ | ||
cp instrument-libs/target/instrument-libs-1.0-SNAPSHOT.jar ./ |
276 changes: 276 additions & 0 deletions
276
Deadly Retries/hbase-instrumentation-master/instrument-libs/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,276 @@ | ||
<?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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>pfl</groupId> | ||
<artifactId>instrument-libs</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<name>instrument-libs</name> | ||
<!-- FIXME change it to the project's website --> | ||
<url>http://www.example.com</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.aspectj</groupId> | ||
<artifactId>aspectjrt</artifactId> | ||
<version>1.9.7</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.6.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-simple</artifactId> | ||
<version>1.6.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.zookeeper</groupId> | ||
<artifactId>zookeeper</artifactId> | ||
<version>3.4.6</version> | ||
<type>pom</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>31.0.1-jre</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.8.9</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.12.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-text</artifactId> | ||
<version>1.10.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-netty-shaded</artifactId> | ||
<version>1.44.0</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-protobuf</artifactId> | ||
<version>1.44.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-stub</artifactId> | ||
<version>1.44.0</version> | ||
</dependency> | ||
<dependency> <!-- necessary for Java 9+ --> | ||
<groupId>org.apache.tomcat</groupId> | ||
<artifactId>annotations-api</artifactId> | ||
<version>6.0.53</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.reflections</groupId> | ||
<artifactId>reflections</artifactId> | ||
<version>0.10.2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
<version>1.23.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.luben</groupId> | ||
<artifactId>zstd-jni</artifactId> | ||
<version>1.5.4-2</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.17</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> | ||
<plugins> | ||
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> | ||
<plugin> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.1.0</version> | ||
</plugin> | ||
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> | ||
<plugin> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>3.0.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.0</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.22.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.0.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-install-plugin</artifactId> | ||
<version>2.5.2</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>2.8.2</version> | ||
</plugin> | ||
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> | ||
<plugin> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.7.1</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
<version>3.0.0</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
<plugins> | ||
<!-- <plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<descriptorRefs> | ||
<descriptorRef>jar-with-dependencies</descriptorRef> | ||
</descriptorRefs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> --> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<shadedArtifactAttached>false</shadedArtifactAttached> | ||
<relocations> | ||
<relocation> | ||
<pattern>com.google</pattern> | ||
<shadedPattern>pfl.shaded.com.google</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.apache</pattern> | ||
<shadedPattern>pfl.shaded.org.apache</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>jline</pattern> | ||
<shadedPattern>pfl.shaded.jline</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>junit</pattern> | ||
<shadedPattern>pfl.shaded.junit</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.slf4j</pattern> | ||
<shadedPattern>pfl.shaded.org.slf4j</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>org.reflections</pattern> | ||
<shadedPattern>pfl.shaded.org.reflections</shadedPattern> | ||
</relocation> | ||
<relocation> | ||
<pattern>com.github.luben</pattern> | ||
<shadedPattern>pfl.shaded.com.github.luben</shadedPattern> | ||
</relocation> | ||
</relocations> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.github.os72</groupId> | ||
<artifactId>protoc-jar-maven-plugin</artifactId> | ||
<version>3.11.4</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<protocArtifact>com.google.protobuf:protoc:3.19.2</protocArtifact> | ||
<includeStdTypes>true</includeStdTypes> | ||
<inputDirectories> | ||
<include>./proto</include> | ||
</inputDirectories> | ||
<includeDirectories> | ||
<include>./proto</include> | ||
</includeDirectories> | ||
<outputTargets> | ||
<outputTarget> | ||
<type>java</type> | ||
</outputTarget> | ||
<outputTarget> | ||
<type>grpc-java</type> | ||
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.44.0</pluginArtifact> | ||
</outputTarget> | ||
</outputTargets> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.0.2</version> | ||
</plugin> | ||
|
||
<!-- <plugin> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<executions> | ||
<execution> | ||
<id>Copy</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>exec</goal> | ||
</goals> | ||
<configuration> | ||
<executable>${basedir}/copy-lib.sh</executable> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> --> | ||
|
||
</plugins> | ||
</build> | ||
</project> |
34 changes: 34 additions & 0 deletions
34
Deadly Retries/hbase-instrumentation-master/instrument-libs/proto/BlockRpcSvc.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
syntax = "proto3"; | ||
|
||
option java_package = "pfl.monitor"; | ||
|
||
import "google/protobuf/any.proto"; | ||
import "google/protobuf/timestamp.proto"; | ||
import "google/protobuf/empty.proto"; | ||
import "google/protobuf/duration.proto"; | ||
import "MsgSvc.proto"; | ||
import "RpcParams.proto"; | ||
|
||
service BlockRpcSvc | ||
{ | ||
rpc RequestRpcLog(RPCRequest) returns (Log) {} // Send RPC logs with MsgSvc.Send() | ||
rpc BlockRpc(RPCsToBlock) returns (google.protobuf.Empty) {} | ||
} | ||
|
||
message RPCRequest | ||
{ | ||
google.protobuf.Timestamp timestamp = 1; | ||
google.protobuf.Duration duration = 2; // Forward Duration | ||
string toIP = 3; | ||
} | ||
|
||
message RPCToBlock | ||
{ | ||
string method = 1; | ||
RpcParams param = 2; | ||
} | ||
|
||
message RPCsToBlock | ||
{ | ||
repeated RPCToBlock rpcsToBlock = 1; | ||
} |
Oops, something went wrong.