MVN

org.apache.skywalking : ai-pipeline

Maven & Gradle

Jun 16, 2023

AI pipeline module include pipelines connecting the OAP kernel and any 3rd party AI and/or algorithm server. The kernel would call the pipeline in the specific context/scenario with well formatted telemetry data, and expect the remote to respond with the result of the AI/algorithm as quick as possible, but in async way in case of large size of data or lower performance behavior of the remote.

<dependency>
    <groupId>org.apache.skywalking</groupId>
    <artifactId>ai-pipeline</artifactId>
    <version>9.5.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.skywalking : ai-pipeline to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 9.5.0

All Versions

Choose a version of org.apache.skywalking : ai-pipeline to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
9.5.x
ai-pipeline-9.5.0

How to add a dependency to Maven

Add the following org.apache.skywalking : ai-pipeline maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.skywalking</groupId>
    <artifactId>ai-pipeline</artifactId>
    <version>9.5.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.skywalking : ai-pipeline gradle dependency to your build.gradle file:

implementation 'org.apache.skywalking:ai-pipeline:9.5.0'

Gradle Kotlin DSL: Add the following org.apache.skywalking : ai-pipeline gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.skywalking:ai-pipeline:9.5.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.skywalking : ai-pipeline sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.skywalking" % "ai-pipeline" % "9.5.0"