بنقرة واحدة
maven-druid-build
Building Apache Druid with Maven, managing memory constraints, and skipping verification checks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Building Apache Druid with Maven, managing memory constraints, and skipping verification checks.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Handles reading, populating, and saving .docx files using the python-docx library. Use this skill for any tasks involving template filling or modifying Word documents.
Perform various data analysis on SEC 13-F and obtain some insights of fund activities such as number of holdings, AUM, and change of holdings between two quarters.
This skill includes search capability in 13F, such as fuzzy search a fund information using possibly inaccurate name, or fuzzy search a stock cusip info using its name.
A comprehensive PDF toolkit for advanced data extraction and document analysis. Beyond text and table extraction, this tool is optimized for visual layout reasoning: it can map graphical elements to coordinates (such as determining appointment times based on their position on a calendar timeline) and identify color-coded features (e.g., distinguishing high-priority blocks from flexible blue-colored entries). Use this skill when the task requires interpreting schedule layouts, calculating durations from visual spans, or resolving scheduling conflicts based on the spatial and color properties of a PDF document.
Build deterministic, verifiable data visualizations with D3.js (v6). Generate standalone HTML/SVG (and optional PNG) from local data files without external network dependencies. Use when tasks require charts, plots, axes/scales, legends, tooltips, or data-driven SVG output.
invoke this skill when you need to perform database search for travel planning. This skill provides some useful pre-packaged tools to look up accommodations, attractions, cities, driving distance, flights, and restaurants from the bundled dataset.
| name | maven-druid-build |
| description | Building Apache Druid with Maven, managing memory constraints, and skipping verification checks. |
cd /root/druid
mvn clean package \
-DskipTests \
-Dcheckstyle.skip=true \
-Dpmd.skip=true \
-Dforbiddenapis.skip=true \
-Dspotbugs.skip=true \
-Danimal.sniffer.skip=true \
-Denforcer.skip=true \
-Djacoco.skip=true \
-Ddependency-check.skip=true \
-pl '!web-console' \
-pl indexing-service \
-am
| Flag | Purpose |
|---|---|
clean | Remove previous build artifacts |
package | Compile and package into JAR/WAR |
-DskipTests | Skip unit test execution |
-Dcheckstyle.skip=true | Skip code style checking |
-Dpmd.skip=true | Skip PMD analysis |
-Dforbiddenapis.skip=true | Skip forbidden API checking |
-Dspotbugs.skip=true | Skip SpotBugs (FindBugs) analysis |
-Danimal.sniffer.skip=true | Skip JDK version compatibility checks |
-Denforcer.skip=true | Skip Maven Enforcer rules |
-Djacoco.skip=true | Skip code coverage analysis |
-Ddependency-check.skip=true | Skip OWASP dependency checking |
-pl '!web-console' | Exclude web-console module (memory constraint) |
-pl indexing-service | Include indexing-service module |
-am | Also make dependencies of selected projects |
If you encounter OOM (Out of Memory) errors:
# Increase heap size
export MAVEN_OPTS="-Xmx2g -Xms1g"
# Very aggressive heap limit
export MAVEN_OPTS="-Xmx1g -Xms512m"
To speed up builds with multiple cores:
mvn clean package -T 1C # 1 thread per core
After successful build:
druid/indexing-service/target/druid-indexing-service-0.20.0-SNAPSHOT.jar
druid/distribution/target/apache-druid-0.20.0-SNAPSHOT/lib/
# Check if JAR was created
ls -la indexing-service/target/*.jar
# Check build log for errors
tail -100 build.log
# Verify specific file was included
jar tf indexing-service/target/*.jar | grep "JavaScriptFilter"
# Verify module exists
ls -la indexing-service/pom.xml
# Rebuild parent projects
mvn clean install -pl '!web-console'
# Detailed error output
mvn clean package -X 2>&1 | tail -50
# Compile only (no packaging)
mvn clean compile
# Build specific module and dependencies
mvn clean package -pl indexing-service -am
# Build without tests but with other checks
mvn clean package -DskipTests
# Minimal build for testing
mvn clean package -DskipTests -Denforcer.skip=true