jugomezv opened a new issue, #9107: URL: https://github.com/apache/pinot/issues/9107
I was going through the set up for M1 and found that [this](https://docs.pinot.apache.org/basics/getting-started/running-pinot-locally#m1-mac-support)section seems to have an issue: The provided settings.xml file as shown there, causes a failure due to parsing issues: <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> Seems like the proper syntax is to include the full content of the file within the activeProfiles tag: <activeProfiles> <activeProfile> apple-silicon </activeProfile> <profiles> <profile> <id>apple-silicon</id> <properties> <os.detected.classifier>osx-x86_64</os.detected.classifier> </properties> </profile> </profiles> </activeProfiles> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org