You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2021/12/20 09:16:27 UTC

[GitHub] [druid] applike-ss opened a new issue #12082: Pull-deps extremely slow and not working in docker build

applike-ss opened a new issue #12082:
URL: https://github.com/apache/druid/issues/12082


   ### Affected Version
   0.22.1
   
   ### Description
   I was trying to add the prometheus-emitter via the pull-deps command:
   `java -classpath "/opt/druid/lib/*" org.apache.druid.cli.Main tools pull-deps -c org.apache.druid.extensions.contrib:prometheus-emitter:${DRUID_RELEASE}`
   `$DRUID_RELEASE` was set to 0.22.1 via Dockerfile ARG.
   Also tried this in a separate docker container apache/druid:0.22.1 and executed `java -classpath "/opt/druid/lib/*" org.apache.druid.cli.Main tools pull-deps -c org.apache.druid.extensions.contrib:prometheus-emitter:0.22.1`.
   The execution takes ~5 minutes each time and in the docker build process it does not even seem to install the extension.
   ```
   time java -classpath "/opt/druid/lib/*" org.apache.druid.cli.Main tools pull-deps -c org.apache.druid.extensions.contrib:prometheus-emitter:0.22.1
   real    4m 45.06s
   user    0m 11.18s
   sys     0m 0.89s
   ```
   As i don't know much about pull-deps, i can't debug this and the documentation does not seem to include a debug or verbosity flag which could help me track down what is taking so long.
   I couldn't find a documentation on how to install the specific plugin either, so i assembled the path module/coordinate `org.apache.druid.extensions.contrib:prometheus-emitter` myself by browsing the maven repo.
   
   Would be great to know if the slowlyness is a mistake by me, if it is the tool or a temporary issue (though i could download the jar of the extensions really fast as it is less 100kb).


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1007180506


   i can confirm that the docker image of 0.22.1 uses this version which is below your newly used version: `1.8.0_275-8u275-b01-1~deb9u1-b01` and that matches with the current distroless java version. Guess we'll have to wait until google updates it to have faster downloads or use a multistage build and copy the jars over.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] krishnat2 edited a comment on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
krishnat2 edited a comment on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1007056485


   The issue resolved itself, once I upgrade to latest jdk-1.8 -- jdk-8u311-linux-x64.rpm. I was previously using, jdk-8u211-linux-x64.rpm


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] FrankChen021 commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
FrankChen021 commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1000608623


   The pull-deps tool uses the `io.tesla.aether` to pull the artifacts from repostory. It seems that this lib will try to pull artifacts from `http://repo.maven.apache.org/maven2`. I don't know where this repo is from, maybe it is coded inside the lib. 
   
   I don't have much more energy to check that. You can check the code at `src/main/java/org/apache/druid/cli/PullDependencies.java` to see how the tool uses `io.tesla.aether`.
   
   
   


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] FrankChen021 commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
FrankChen021 commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-998711844


   Use the -r option I mentioned above to download artifacts from https://repo1.maven.org/maven2/


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] FrankChen021 commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
FrankChen021 commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-998485662


   I guess this problem is due to slow response from mvn repository. Have you tried the following options of pull-deps tool to use a mirror mvn repository?
   
   https://druid.apache.org/docs/latest/operations/pull-deps.html
   > -r or --remoteRepository
   >
   > Add a remote repository. Unless --no-default-remote-repositories is provided, these will be used after https://repo1.maven.org/maven2/ and http://metamx.artifactoryonline.com/metamx/pub-libs-releases-local
   >
   > --no-default-remote-repositories
   >
   > Don't use the default remote repositories, only use the repositories provided directly via --remoteRepository.
   
   
   
   Meanwhile, you can add the jvm argument `-Dlog4j2.level=INFO` to the command line to see the logs from the console, so that you can check which step is slow.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] krishnat2 edited a comment on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
krishnat2 edited a comment on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1007056485


   The issue resolved itself, once I upgrade to latest jdk-1.8 -- jdk-8u311-linux-x64.rpm. I was previously using, jdk-8u211-linux-x64.rpm


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-998873795


   Even when doing that, i still see these via debug logs:
   ```
   Downloading artifact io.prometheus:simpleclient:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:04.524 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:simpleclient:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:parent:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:05.687 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/parent/0.7.0/parent-0.7.0.pom
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/parent/0.7.0/parent-0.7.0.pom. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:parent:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_httpserver:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:06.753 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.pom
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.pom. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:simpleclient_httpserver:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_common:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:07.814 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:simpleclient_common:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_pushgateway:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:08.991 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.pom
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.pom. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:simpleclient_pushgateway:pom:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_httpserver:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_common:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloading artifact io.prometheus:simpleclient_pushgateway:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   15:30:12.988 [main] DEBUG org.eclipse.aether.internal.impl.DefaultRepositoryConnectorProvider - Using connector AetherRepositoryConnector with priority 3.4028235E38 for http://repo.maven.apache.org/maven2
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar. Error code 501, HTTPS Required
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.jar
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.jar. Error code 501, HTTPS Required
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar. Error code 501, HTTPS Required
   Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.jar
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.jar. Error code 501, HTTPS Required
   Downloaded artifact io.prometheus:simpleclient:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloaded artifact io.prometheus:simpleclient_httpserver:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloaded artifact io.prometheus:simpleclient_common:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   Downloaded artifact io.prometheus:simpleclient_pushgateway:jar:0.7.0 from central (http://repo.maven.apache.org/maven2, releases)
   ```
   
   My command executed was:
   ```
   java -Dlog4j2.level=DEBUG -classpath "/opt/druid/lib/*" org.apache.druid.cli.Main tools pull-deps --no-default-remote-repositories -r https://repo1.maven.org/maven2/ --no-default-hadoop -c org.apache.druid.extensions.contrib:prometheus-emitter:0.22.1
   ```


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1003926339


   Ok, since i am not a java developer (and not into developing druid), i would leave this TBD for someone else.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss edited a comment on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss edited a comment on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1003926339


   Ok, thanks for the insights! Since i am not a java developer (and not into developing druid), i would leave this TBD for someone else.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1007180506


   i can confirm that the docker image of 0.22.1 uses this version which is below your newly used version: `1.8.0_275-8u275-b01-1~deb9u1-b01` and that matches with the current distroless java version. Guess we'll have to wait until google updates it to have faster downloads or use a multistage build and copy the jars over.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] krishnat2 commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
krishnat2 commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1006225704


   I am seeing the same issue, when we try to download org.apache.druid.extensions.contrib:statsd-emitter:0.22.1,  org.apache.hadoop:hadoop-aws:2.8.5 and com.amazonaws:aws-java-sdk-s3:1.11.479
   
   For now, we have manually downloaded the required jars and moving ahead. It would be nice, to get this resolved sometime soon.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] krishnat2 commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
krishnat2 commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-1007056485


   The seems to resolve itself, once I upgrade to latest jdk-1.8 -- jdk-8u311-linux-x64.rpm. I was previously using, jdk-8u211-linux-x64.rpm


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] applike-ss commented on issue #12082: Pull-deps extremely slow and not working in docker build

Posted by GitBox <gi...@apache.org>.
applike-ss commented on issue #12082:
URL: https://github.com/apache/druid/issues/12082#issuecomment-998523607


   Thank you for this great hint.
   
   Now it only takes 20 seconds (which in tech is still a lot), but a lot faster than ~5 minutes!
   
   By adding the suggested log  level parameter and adjusting it to debug, i could see that the pull-deps command is complainig about resources not existing.
   
   i am now running `java -Dlog4j2.level=DEBUG -classpath "/opt/druid/lib/*" org.apache.druid.cli.Main tools pull-deps --no-default-hadoop -c org.apache.druid.extensions.contrib:prometheus-emitter:0.22.1` and when grepping this for error, i get:
   ```
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/org/apache/apache/21/apache-21.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/com/fasterxml/jackson/jackson-bom/2.10.5.20201202/jackson-bom-2.10.5.20201202.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/com/fasterxml/jackson/jackson-parent/2.10/jackson-parent-2.10.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/com/fasterxml/oss-parent/38/oss-parent-38.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/netty/netty-bom/4.1.68.Final/netty-bom-4.1.68.Final.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/org/sonatype/oss/oss-parent/7/oss-parent-7.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.pom. Error code 501, HTTPS Required
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/parent/0.7.0/parent-0.7.0.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/parent/0.7.0/parent-0.7.0.pom. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/parent/0.7.0/parent-0.7.0.pom. Error code 501, HTTPS Required
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.pom. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.pom. Error code 501, HTTPS Required
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.pom. Error code 501, HTTPS Required
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.pom. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.pom. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.pom. Error code 501, HTTPS Required
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.apache.org/snapshots/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar. Error code 404
   io.tesla.aether.connector.ResourceDoesNotExistException: Unable to locate resource https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.jar. Error code 404
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.7.0/simpleclient-0.7.0.jar. Error code 501, HTTPS Required
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_httpserver/0.7.0/simpleclient_httpserver-0.7.0.jar. Error code 501, HTTPS Required
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.7.0/simpleclient_common-0.7.0.jar. Error code 501, HTTPS Required
   io.tesla.aether.connector.TransferException: Failed to transfer http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_pushgateway/0.7.0/simpleclient_pushgateway-0.7.0.jar. Error code 501, HTTPS Required
   ```
   
   I'm confused about multiple things: How did nobody ever notice that resources seem to have got lost and why would it try http in times of https?
   
   I don't know if any of those questions really relate for pull-deps or if that is to be asked somewhere else to be honest.


-- 
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-unsubscribe@druid.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org