Misc BigData components for TiDB, Presto, Flink and MapReduce connectors for example.
TiBigData project is under the Apache 2.0 license. See the LICENSE file for details.
Compiling TiBigData requires git and downloading source code directly is not supported.
Use the following command to run the integration test.
export TIDB_HOST="127.0.0.1"
export TIDB_PORT="4000"
export TIDB_USER="root"
export TIDB_PASSWORD=""
mvn clean test-compile failsafe:integration-test -am -pl ${MODULE_NAME}
Use the following command to run the unit test.
mvn clean test -am -pl ${MODULE_NAME}
First, make sure the module add dependency:
<dependency>
<groupId>io.tidb</groupId>
<artifactId>bigdata-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
Second, use JUnit Category to clarify integration-test:
import io.tidb.bigdata.test.IntegrationTest;
@Category(IntegrationTest.class)
public class ConnectorsPluginTest {
}
Lark / Feishu Group:
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications. YourKit is the creator of YourKit Java Profiler, YourKit .NET Profiler, and YourKit YouMonitor.
IntelliJ IDEA is a Java integrated development environment (IDE) for developing computer software.
It is developed by JetBrains (formerly known as IntelliJ), and is available as an Apache 2 Licensed community edition,
and in a proprietary commercial edition. Both can be used for commercial development.