Hello team :wave: Any chance we could publish linu...
# general
l
Hello team 👋 Any chance we could publish linux/arm64 images for pinot? I see we've started doing that in 0.11.0, but 0.10 and below do not support that architecture. I'm running into problems running pinot locally on the Mac M1 due to the chipset.
k
Hi, We can do that. For current needs, you can build pinot from source on M1. Add this in your
~/.m2/settings.xml
Copy code
<settings>
  <activeProfiles>
    <activeProfile>
      apple-silicon
    </activeProfile>
  </activeProfiles>
  <profiles>
    <profile>
      <id>apple-silicon</id>
      <properties>
        <os.detected.classifier>osx-x86_64</os.detected.classifier>
      </properties>
    </profile>
  </profiles>
</settings>
and then run the following from pinot source directory
mvn clean package -DskipTests -Pbin-dist
👍 1
n
@User can we document this in the pinot website?
k
yes, will add it
👍 2
l
Great, thank you