awslabs / amazon-kinesis-client-python

Amazon Kinesis Client Library for Python
Apache License 2.0
368 stars 223 forks source link

Can't PIP install KCL all the time because of 429 responses from Maven #99

Open ghost opened 5 years ago

ghost commented 5 years ago

So we're working on beginning to use the KCL. We've got a Dockerized build that pip-install's amazon_kclpy==2.0.1. Sometimes this works, but sometimes we get 429s from Maven for all the things it needs to install.

image

image

This is a big problem, since if we cannot do this install, we cannot use the KCL. Is there either an alternative way to install this stuff? Or is there something that can be done that would make this all consistently install?

ghost commented 5 years ago

It looks like the problem is here: https://github.com/awslabs/amazon-kinesis-client-python/blob/master/setup.py#L188

If we caught a 429 and applied some backoff, I think this wouldn't be a problem.

MrHen commented 5 years ago

We just hit this issue with a very similar setup. We have KCL inside of a Docker container and during the initial container build Maven had 429 errors which prevented a jar file from being available at runtime.

For searching purposes, the runtime error message was:

2019-06-06 13:23:27,967 DEBG 'kcl' stderr output:
Running KCL worker with command: "['java', '-cp', '/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/animal-sniffer-annotations-1.14.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/amazon-kinesis-client-1.9.3.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/commons-codec-1.10.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-core-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/httpclient-4.5.5.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/commons-lang3-3.7.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/joda-time-2.8.1.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/httpcore-4.4.9.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/error_prone_annotations-2.1.3.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/ion-java-1.0.2.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-s3-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jackson-annotations-2.6.0.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-kms-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jmespath-java-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/guava-26.0-jre.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jackson-dataformat-cbor-2.6.7.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-kinesis-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-cloudwatch-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/checker-qual-2.5.2.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jackson-core-2.6.7.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/j2objc-annotations-1.1.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/aws-java-sdk-dynamodb-1.11.438.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jackson-databind-2.6.7.1.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/protobuf-java-2.6.1.jar:/usr/local/lib/python3.6/site-packages/amazon_kclpy/jars/jsr305-3.0.2.jar:/opt/centriam/api/record_processing', 'com.amazonaws.services.kinesis.multilang.MultiLangDaemon', 'processor.properties']"

2019-06-06 13:23:28,028 DEBG 'kcl' stderr output:
    at com.amazonaws.services.kinesis.multilang.MultiLangDaemon.<clinit>(MultiLangDaemon.java:63)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 1 more

The error output during container build was the same as posted in the image above. Again, for searching purposes here is the text:

10:19:59   Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar: HTTP Error 429: Too Many Requests
10:19:59   Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar
10:19:59   Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar: HTTP Error 429: Too Many Requests

And:

10:19:59   changing mode of build/bdist.linux-x86_64/wheel/amazon_kclpy-1.5.1.data/scripts/sample_kinesis_wordputter.py to 755
10:19:59   Traceback (most recent call last):
10:19:59     File "<string>", line 1, in <module>
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 263, in <module>
10:19:59       zip_safe=False,
10:19:59     File "/usr/local/lib/python3.6/site-packages/setuptools/__init__.py", line 145, in setup
10:19:59       return distutils.core.setup(**attrs)
10:19:59     File "/usr/local/lib/python3.6/distutils/core.py", line 148, in setup
10:19:59       dist.run_commands()
10:19:59     File "/usr/local/lib/python3.6/distutils/dist.py", line 955, in run_commands
10:19:59       self.run_command(cmd)
10:19:59     File "/usr/local/lib/python3.6/distutils/dist.py", line 974, in run_command
10:19:59       cmd_obj.run()
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 226, in run
10:19:59       downloader.download_and_check()
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 119, in download_and_check
10:19:59       self.on_completion()
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 222, in do_run
10:19:59       bdist_wheel.run(self)
10:19:59     File "/usr/local/lib/python3.6/site-packages/wheel/bdist_wheel.py", line 215, in run
10:19:59       self.run_command('install')
10:19:59     File "/usr/local/lib/python3.6/distutils/cmd.py", line 313, in run_command
10:19:59       self.distribution.run_command(command)
10:19:59     File "/usr/local/lib/python3.6/distutils/dist.py", line 974, in run_command
10:19:59       cmd_obj.run()
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 206, in run
10:19:59       downloader.download_and_check()
10:19:59     File "/tmp/pip-install-32euu0r7/amazon-kclpy/setup.py", line 122, in download_and_check
10:19:59       raise RuntimeError(self.warning_string(missing_jars))
10:19:59   RuntimeError: The following jars were not installed because they were not
10:19:59   present in this package at the time of installation:
10:19:59     amazon_kclpy/jars/commons-logging-1.1.3.jar
10:19:59   This doesn't affect the rest of the installation, but may make it more
10:19:59   difficult for you to run the sample app and get started.
10:19:59   
10:19:59   You should consider running:
10:19:59   
10:19:59       python setup.py download_jars
10:19:59       python setup.py install
10:19:59   
10:19:59   Which will download the required jars and rerun the install.
10:19:59   
10:19:59   
10:19:59   ----------------------------------------
10:19:59   Failed building wheel for amazon-kclpy

It took me about 5 hours to figure out what went wrong. The workaround was to babysit the container build until it worked as expected and then deploy the container. It would be great if the PR that fixes this issue could get merged and deployed.

ghost commented 5 years ago

@MrHen the issue is fixed in https://github.com/awslabs/amazon-kinesis-client-python/pull/100. Until the fix is applied upstream, we put git+https://github.com/alight-analytics/amazon-kinesis-client-python@2.0.5#egg=amazon_kclpy in our requirements for our dockerfile. Since then our builds have been consistently stable.

hckrbaba commented 1 year ago

@jtfalkenstein , @MrHen Getting the same error. Can you please help me out ?

pip install amazon-kclpy==2.1.1

Collecting amazon-kclpy==2.1.1
  Using cached amazon_kclpy-2.1.1.tar.gz (32 kB)
  Preparing metadata (setup.py) ... done
Collecting boto (from amazon-kclpy==2.1.1)
  Using cached boto-2.49.0-py2.py3-none-any.whl (1.4 MB)
Collecting argparse (from amazon-kclpy==2.1.1)
  Using cached argparse-1.4.0-py2.py3-none-any.whl (23 kB)
Building wheels for collected packages: amazon-kclpy
  Building wheel for amazon-kclpy (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py bdist_wheel did not run successfully.
  │ exit code: 1
  ╰─> [523 lines of output]
      /Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/dist.py:745: SetuptoolsDeprecationWarning: Invalid dash-separated options
      !!

              ********************************************************************************
              Usage of dash-separated 'description-file' will not be supported in future
              versions. Please use the underscore name 'description_file' instead.

              By 2023-Sep-26, you need to update your project and remove deprecated calls
              or your builds will no longer be supported.

              See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
              ********************************************************************************

      !!
        opt = self.warn_dash_deprecation(opt, section)
      /Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.
      !!

              ********************************************************************************
              Requirements should be satisfied by a PEP 517 installer.
              If you are using pip, you can try `pip install --use-pep517`.
              ********************************************************************************

      !!
        dist.fetch_build_eggs(dist.setup_requires)
      /Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/dist.py:745: SetuptoolsDeprecationWarning: Invalid dash-separated options
      !!

              ********************************************************************************
              Usage of dash-separated 'description-file' will not be supported in future
              versions. Please use the underscore name 'description_file' instead.

              By 2023-Sep-26, you need to update your project and remove deprecated calls
              or your builds will no longer be supported.

              See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details.
              ********************************************************************************

      !!
        opt = self.warn_dash_deprecation(opt, section)
      running bdist_wheel
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client-multilang/2.4.4/amazon-kinesis-client-multilang-2.4.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client-multilang/2.4.4/amazon-kinesis-client-multilang-2.4.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client/2.4.4/amazon-kinesis-client-2.4.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client/2.4.4/amazon-kinesis-client-2.4.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/kinesis/2.19.2/kinesis-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/kinesis/2.19.2/kinesis-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/dynamodb/2.19.2/dynamodb-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/dynamodb/2.19.2/dynamodb-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/cloudwatch/2.19.2/cloudwatch-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/cloudwatch/2.19.2/cloudwatch-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/netty-nio-client/2.19.2/netty-nio-client-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/netty-nio-client/2.19.2/netty-nio-client-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/metrics-spi/2.19.2/metrics-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/metrics-spi/2.19.2/metrics-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sts/2.19.2/sts-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sts/2.19.2/sts-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/protocol-core/2.19.2/protocol-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/protocol-core/2.19.2/protocol-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-query-protocol/2.19.2/aws-query-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-query-protocol/2.19.2/aws-query-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-cbor-protocol/2.19.2/aws-cbor-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-cbor-protocol/2.19.2/aws-cbor-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-json-protocol/2.19.2/aws-json-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-json-protocol/2.19.2/aws-json-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/json-utils/2.19.2/json-utils-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/json-utils/2.19.2/json-utils-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-core/2.19.2/third-party-jackson-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-core/2.19.2/third-party-jackson-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-dataformat-cbor/2.19.2/third-party-jackson-dataformat-cbor-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-dataformat-cbor/2.19.2/third-party-jackson-dataformat-cbor-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/profiles/2.19.2/profiles-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/profiles/2.19.2/profiles-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sdk-core/2.19.2/sdk-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sdk-core/2.19.2/sdk-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-core/2.19.2/aws-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-core/2.19.2/aws-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/endpoints-spi/2.19.2/endpoints-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/endpoints-spi/2.19.2/endpoints-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/auth/2.19.2/auth-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/auth/2.19.2/auth-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/http-client-spi/2.19.2/http-client-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/http-client-spi/2.19.2/http-client-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/regions/2.19.2/regions-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/regions/2.19.2/regions-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/annotations/2.19.2/annotations-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/annotations/2.19.2/annotations-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/utils/2.19.2/utils-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/utils/2.19.2/utils-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/apache-client/2.19.2/apache-client-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/apache-client/2.19.2/apache-client-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams-http/2.0.6/netty-reactive-streams-http-2.0.6.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams-http/2.0.6/netty-reactive-streams-http-2.0.6.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams/2.0.6/netty-reactive-streams-2.0.6.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams/2.0.6/netty-reactive-streams-2.0.6.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/codehaus/mojo/animal-sniffer-annotations/1.20/animal-sniffer-annotations-1.20.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/codehaus/mojo/animal-sniffer-annotations/1.20/animal-sniffer-annotations-1.20.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/protobuf/protobuf-java/3.21.5/protobuf-java-3.21.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/protobuf/protobuf-java/3.21.5/protobuf-java-3.21.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/reactivex/rxjava3/rxjava/3.1.5/rxjava-3.1.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/reactivex/rxjava3/rxjava/3.1.5/rxjava-3.1.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.13.4/jackson-dataformat-cbor-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.13.4/jackson-dataformat-cbor-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/flow/1.7/flow-1.7.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/flow/1.7/flow-1.7.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-codec/commons-codec/1.15/commons-codec-1.15.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-codec/commons-codec/1.15/commons-codec-1.15.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/amazonaws/aws-java-sdk-core/1.12.370/aws-java-sdk-core-1.12.370.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/amazonaws/aws-java-sdk-core/1.12.370/aws-java-sdk-core-1.12.370.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/ion/ion-java/1.5.1/ion-java-1.5.1.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/ion/ion-java/1.5.1/ion-java-1.5.1.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/glue/schema-registry-serde/1.1.13/schema-registry-serde-1.1.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/glue/schema-registry-serde/1.1.13/schema-registry-serde-1.1.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=joda-time/joda-time/2.10.13/joda-time-2.10.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=joda-time/joda-time/2.10.13/joda-time-2.10.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-classic/1.3.0/logback-classic-1.3.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-classic/1.3.0/logback-classic-1.3.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-core/1.3.0/logback-core-1.3.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-core/1.3.0/logback-core-1.3.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/beust/jcommander/1.82/jcommander-1.82.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/beust/jcommander/1.82/jcommander-1.82.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-io/commons-io/2.11.0/commons-io-2.11.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      running build
      running build_py
      creating build
      creating build/lib
      creating build/lib/amazon_kclpy
      copying amazon_kclpy/checkpoint_error.py -> build/lib/amazon_kclpy
      copying amazon_kclpy/dispatch.py -> build/lib/amazon_kclpy
      copying amazon_kclpy/__init__.py -> build/lib/amazon_kclpy
      copying amazon_kclpy/messages.py -> build/lib/amazon_kclpy
      copying amazon_kclpy/kcl.py -> build/lib/amazon_kclpy
      creating build/lib/amazon_kclpy/v2
      copying amazon_kclpy/v2/__init__.py -> build/lib/amazon_kclpy/v2
      copying amazon_kclpy/v2/processor.py -> build/lib/amazon_kclpy/v2
      creating build/lib/amazon_kclpy/v3
      copying amazon_kclpy/v3/__init__.py -> build/lib/amazon_kclpy/v3
      copying amazon_kclpy/v3/processor.py -> build/lib/amazon_kclpy/v3
      creating build/lib/samples
      copying samples/amazon_kclpy_helper.py -> build/lib/samples
      copying samples/__init__.py -> build/lib/samples
      copying samples/sample_kinesis_wordputter.py -> build/lib/samples
      copying samples/sample_kclpy_app.py -> build/lib/samples
      creating build/lib/amazon_kclpy/jars
      copying amazon_kclpy/jars/__init__.py -> build/lib/amazon_kclpy/jars
      copying samples/sample.properties -> build/lib/samples
      running build_scripts
      creating build/scripts-3.10
      copying and adjusting samples/amazon_kclpy_helper.py -> build/scripts-3.10
      copying samples/__init__.py -> build/scripts-3.10
      copying and adjusting samples/sample_kinesis_wordputter.py -> build/scripts-3.10
      copying and adjusting samples/sample_kclpy_app.py -> build/scripts-3.10
      changing mode of build/scripts-3.10/amazon_kclpy_helper.py from 644 to 755
      changing mode of build/scripts-3.10/__init__.py from 644 to 755
      changing mode of build/scripts-3.10/sample_kinesis_wordputter.py from 644 to 755
      changing mode of build/scripts-3.10/sample_kclpy_app.py from 644 to 755
      /Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
      !!

              ********************************************************************************
              Please avoid running ``setup.py`` directly.
              Instead, use pypa/build, pypa/installer or other
              standards-based tools.

              See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
              ********************************************************************************

      !!
        self.initialize_options()
      installing to build/bdist.macosx-10.9-universal2/wheel
      running install
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client-multilang/2.4.4/amazon-kinesis-client-multilang-2.4.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client-multilang/2.4.4/amazon-kinesis-client-multilang-2.4.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client/2.4.4/amazon-kinesis-client-2.4.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/kinesis/amazon-kinesis-client/2.4.4/amazon-kinesis-client-2.4.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/kinesis/2.19.2/kinesis-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/kinesis/2.19.2/kinesis-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/dynamodb/2.19.2/dynamodb-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/dynamodb/2.19.2/dynamodb-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/cloudwatch/2.19.2/cloudwatch-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/cloudwatch/2.19.2/cloudwatch-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/netty-nio-client/2.19.2/netty-nio-client-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/netty-nio-client/2.19.2/netty-nio-client-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/metrics-spi/2.19.2/metrics-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/metrics-spi/2.19.2/metrics-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sts/2.19.2/sts-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sts/2.19.2/sts-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/protocol-core/2.19.2/protocol-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/protocol-core/2.19.2/protocol-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-query-protocol/2.19.2/aws-query-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-query-protocol/2.19.2/aws-query-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-cbor-protocol/2.19.2/aws-cbor-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-cbor-protocol/2.19.2/aws-cbor-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-json-protocol/2.19.2/aws-json-protocol-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-json-protocol/2.19.2/aws-json-protocol-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/json-utils/2.19.2/json-utils-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/json-utils/2.19.2/json-utils-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-core/2.19.2/third-party-jackson-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-core/2.19.2/third-party-jackson-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-dataformat-cbor/2.19.2/third-party-jackson-dataformat-cbor-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/third-party-jackson-dataformat-cbor/2.19.2/third-party-jackson-dataformat-cbor-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/profiles/2.19.2/profiles-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/profiles/2.19.2/profiles-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sdk-core/2.19.2/sdk-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/sdk-core/2.19.2/sdk-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-core/2.19.2/aws-core-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/aws-core/2.19.2/aws-core-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/endpoints-spi/2.19.2/endpoints-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/endpoints-spi/2.19.2/endpoints-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/auth/2.19.2/auth-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/auth/2.19.2/auth-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/http-client-spi/2.19.2/http-client-spi-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/http-client-spi/2.19.2/http-client-spi-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/regions/2.19.2/regions-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/regions/2.19.2/regions-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/annotations/2.19.2/annotations-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/annotations/2.19.2/annotations-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/utils/2.19.2/utils-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/utils/2.19.2/utils-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/apache-client/2.19.2/apache-client-2.19.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/awssdk/apache-client/2.19.2/apache-client-2.19.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http/4.1.86.Final/netty-codec-http-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec-http2/4.1.86.Final/netty-codec-http2-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-codec/4.1.86.Final/netty-codec-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport/4.1.86.Final/netty-transport-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-resolver/4.1.86.Final/netty-resolver-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-common/4.1.86.Final/netty-common-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-buffer/4.1.86.Final/netty-buffer-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-handler/4.1.86.Final/netty-handler-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-epoll/4.1.86.Final/netty-transport-native-epoll-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/netty/netty-transport-native-unix-common/4.1.86.Final/netty-transport-native-unix-common-4.1.86.Final.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams-http/2.0.6/netty-reactive-streams-http-2.0.6.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams-http/2.0.6/netty-reactive-streams-http-2.0.6.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams/2.0.6/netty-reactive-streams-2.0.6.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/typesafe/netty/netty-reactive-streams/2.0.6/netty-reactive-streams-2.0.6.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/checkerframework/checker-qual/2.5.2/checker-qual-2.5.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/errorprone/error_prone_annotations/2.7.1/error_prone_annotations-2.7.1.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/codehaus/mojo/animal-sniffer-annotations/1.20/animal-sniffer-annotations-1.20.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/codehaus/mojo/animal-sniffer-annotations/1.20/animal-sniffer-annotations-1.20.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/google/protobuf/protobuf-java/3.21.5/protobuf-java-3.21.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/google/protobuf/protobuf-java/3.21.5/protobuf-java-3.21.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/2.0.5/slf4j-api-2.0.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=io/reactivex/rxjava3/rxjava/3.1.5/rxjava-3.1.5.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=io/reactivex/rxjava3/rxjava/3.1.5/rxjava-3.1.5.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.13.4/jackson-dataformat-cbor-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.13.4/jackson-dataformat-cbor-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-core/2.13.4/jackson-core-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-databind/2.13.4/jackson-databind-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/fasterxml/jackson/core/jackson-annotations/2.13.4/jackson-annotations-2.13.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/flow/1.7/flow-1.7.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/flow/1.7/flow-1.7.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-codec/commons-codec/1.15/commons-codec-1.15.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-codec/commons-codec/1.15/commons-codec-1.15.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/amazonaws/aws-java-sdk-core/1.12.370/aws-java-sdk-core-1.12.370.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/amazonaws/aws-java-sdk-core/1.12.370/aws-java-sdk-core-1.12.370.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/ion/ion-java/1.5.1/ion-java-1.5.1.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/ion/ion-java/1.5.1/ion-java-1.5.1.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=software/amazon/glue/schema-registry-serde/1.1.13/schema-registry-serde-1.1.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=software/amazon/glue/schema-registry-serde/1.1.13/schema-registry-serde-1.1.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=joda-time/joda-time/2.10.13/joda-time-2.10.13.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=joda-time/joda-time/2.10.13/joda-time-2.10.13.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-classic/1.3.0/logback-classic-1.3.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-classic/1.3.0/logback-classic-1.3.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-core/1.3.0/logback-core-1.3.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=ch/qos/logback/logback-core/1.3.0/logback-core-1.3.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=com/beust/jcommander/1.82/jcommander-1.82.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=com/beust/jcommander/1.82/jcommander-1.82.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-io/commons-io/2.11.0/commons-io-2.11.0.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=org/apache/commons/commons-collections4/4.2/commons-collections4-4.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      Attempting to retrieve remote jar https://search.maven.org/remotecontent?filepath=commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar
      Failed to retrieve https://search.maven.org/remotecontent?filepath=commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>
      running install_lib
      creating build/bdist.macosx-10.9-universal2
      creating build/bdist.macosx-10.9-universal2/wheel
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/jars
      copying build/lib/amazon_kclpy/jars/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/jars
      copying build/lib/amazon_kclpy/checkpoint_error.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      copying build/lib/amazon_kclpy/dispatch.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      copying build/lib/amazon_kclpy/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v2
      copying build/lib/amazon_kclpy/v2/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v2
      copying build/lib/amazon_kclpy/v2/processor.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v2
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v3
      copying build/lib/amazon_kclpy/v3/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v3
      copying build/lib/amazon_kclpy/v3/processor.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy/v3
      copying build/lib/amazon_kclpy/messages.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      copying build/lib/amazon_kclpy/kcl.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy
      creating build/bdist.macosx-10.9-universal2/wheel/samples
      copying build/lib/samples/amazon_kclpy_helper.py -> build/bdist.macosx-10.9-universal2/wheel/samples
      copying build/lib/samples/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/samples
      copying build/lib/samples/sample_kinesis_wordputter.py -> build/bdist.macosx-10.9-universal2/wheel/samples
      copying build/lib/samples/sample.properties -> build/bdist.macosx-10.9-universal2/wheel/samples
      copying build/lib/samples/sample_kclpy_app.py -> build/bdist.macosx-10.9-universal2/wheel/samples
      running install_egg_info
      running egg_info
      writing amazon_kclpy.egg-info/PKG-INFO
      writing dependency_links to amazon_kclpy.egg-info/dependency_links.txt
      writing requirements to amazon_kclpy.egg-info/requires.txt
      writing top-level names to amazon_kclpy.egg-info/top_level.txt
      reading manifest file 'amazon_kclpy.egg-info/SOURCES.txt'
      reading manifest template 'MANIFEST.in'
      adding license file 'LICENSE.txt'
      adding license file 'NOTICE.txt'
      writing manifest file 'amazon_kclpy.egg-info/SOURCES.txt'
      Copying amazon_kclpy.egg-info to build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1-py3.10.egg-info
      running install_scripts
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data
      creating build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts
      copying build/scripts-3.10/amazon_kclpy_helper.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts
      copying build/scripts-3.10/__init__.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts
      copying build/scripts-3.10/sample_kinesis_wordputter.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts
      copying build/scripts-3.10/sample_kclpy_app.py -> build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts
      changing mode of build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts/amazon_kclpy_helper.py to 755
      changing mode of build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts/__init__.py to 755
      changing mode of build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts/sample_kinesis_wordputter.py to 755
      changing mode of build/bdist.macosx-10.9-universal2/wheel/amazon_kclpy-2.1.1.data/scripts/sample_kclpy_app.py to 755
      Traceback (most recent call last):
        File "<string>", line 2, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 229, in <module>
          setup(
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/__init__.py", line 107, in setup
          return distutils.core.setup(**attrs)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 185, in setup
          return run_commands(dist)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/core.py", line 201, in run_commands
          dist.run_commands()
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 969, in run_commands
          self.run_command(cmd)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/dist.py", line 1234, in run_command
          super().run_command(command)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
          cmd_obj.run()
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 208, in run
          downloader.download_and_check()
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 101, in download_and_check
          self.on_completion(
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 204, in do_run
          bdist_wheel.run(self)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/wheel/bdist_wheel.py", line 384, in run
          self.run_command("install")
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py", line 318, in run_command
          self.distribution.run_command(command)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/dist.py", line 1234, in run_command
          super().run_command(command)
        File "/Users/shreyas/git/localstack/.venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py", line 988, in run_command
          cmd_obj.run()
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 188, in run
          downloader.download_and_check()
        File "/private/var/folders/cv/skplms214nq1c5xsvlscr_580000gn/T/pip-install-sro9y_un/amazon-kclpy_5f38b1621b11452cbdbe4b7279a070e8/setup.py", line 104, in download_and_check
          raise RuntimeError(self.warning_string(missing_jars))
      RuntimeError: The following jars were not installed because they were not
      present in this package at the time of installation:
        amazon_kclpy/jars/amazon-kinesis-client-multilang-2.4.4.jar
        amazon_kclpy/jars/amazon-kinesis-client-2.4.4.jar
        amazon_kclpy/jars/kinesis-2.19.2.jar
        amazon_kclpy/jars/dynamodb-2.19.2.jar
        amazon_kclpy/jars/cloudwatch-2.19.2.jar
        amazon_kclpy/jars/netty-nio-client-2.19.2.jar
        amazon_kclpy/jars/metrics-spi-2.19.2.jar
        amazon_kclpy/jars/sts-2.19.2.jar
        amazon_kclpy/jars/protocol-core-2.19.2.jar
        amazon_kclpy/jars/aws-query-protocol-2.19.2.jar
        amazon_kclpy/jars/aws-cbor-protocol-2.19.2.jar
        amazon_kclpy/jars/aws-json-protocol-2.19.2.jar
        amazon_kclpy/jars/json-utils-2.19.2.jar
        amazon_kclpy/jars/third-party-jackson-core-2.19.2.jar
        amazon_kclpy/jars/third-party-jackson-dataformat-cbor-2.19.2.jar
        amazon_kclpy/jars/profiles-2.19.2.jar
        amazon_kclpy/jars/sdk-core-2.19.2.jar
        amazon_kclpy/jars/aws-core-2.19.2.jar
        amazon_kclpy/jars/endpoints-spi-2.19.2.jar
        amazon_kclpy/jars/auth-2.19.2.jar
        amazon_kclpy/jars/http-client-spi-2.19.2.jar
        amazon_kclpy/jars/regions-2.19.2.jar
        amazon_kclpy/jars/annotations-2.19.2.jar
        amazon_kclpy/jars/utils-2.19.2.jar
        amazon_kclpy/jars/apache-client-2.19.2.jar
        amazon_kclpy/jars/netty-codec-http-4.1.86.Final.jar
        amazon_kclpy/jars/netty-codec-http2-4.1.86.Final.jar
        amazon_kclpy/jars/netty-codec-4.1.86.Final.jar
        amazon_kclpy/jars/netty-transport-4.1.86.Final.jar
        amazon_kclpy/jars/netty-resolver-4.1.86.Final.jar
        amazon_kclpy/jars/netty-common-4.1.86.Final.jar
        amazon_kclpy/jars/netty-buffer-4.1.86.Final.jar
        amazon_kclpy/jars/netty-handler-4.1.86.Final.jar
        amazon_kclpy/jars/netty-transport-native-epoll-4.1.86.Final.jar
        amazon_kclpy/jars/netty-transport-native-unix-common-4.1.86.Final.jar
        amazon_kclpy/jars/netty-reactive-streams-http-2.0.6.jar
        amazon_kclpy/jars/netty-reactive-streams-2.0.6.jar
        amazon_kclpy/jars/reactive-streams-1.0.3.jar
        amazon_kclpy/jars/guava-31.0.1-jre.jar
        amazon_kclpy/jars/jsr305-3.0.2.jar
        amazon_kclpy/jars/checker-qual-2.5.2.jar
        amazon_kclpy/jars/error_prone_annotations-2.7.1.jar
        amazon_kclpy/jars/j2objc-annotations-1.3.jar
        amazon_kclpy/jars/animal-sniffer-annotations-1.20.jar
        amazon_kclpy/jars/protobuf-java-3.21.5.jar
        amazon_kclpy/jars/commons-lang3-3.12.0.jar
        amazon_kclpy/jars/slf4j-api-2.0.5.jar
        amazon_kclpy/jars/rxjava-3.1.5.jar
        amazon_kclpy/jars/jackson-dataformat-cbor-2.13.4.jar
        amazon_kclpy/jars/jackson-core-2.13.4.jar
        amazon_kclpy/jars/jackson-databind-2.13.4.jar
        amazon_kclpy/jars/jackson-annotations-2.13.4.jar
        amazon_kclpy/jars/flow-1.7.jar
        amazon_kclpy/jars/httpclient-4.5.13.jar
        amazon_kclpy/jars/commons-codec-1.15.jar
        amazon_kclpy/jars/httpcore-4.4.15.jar
        amazon_kclpy/jars/aws-java-sdk-core-1.12.370.jar
        amazon_kclpy/jars/ion-java-1.5.1.jar
        amazon_kclpy/jars/schema-registry-serde-1.1.13.jar
        amazon_kclpy/jars/joda-time-2.10.13.jar
        amazon_kclpy/jars/logback-classic-1.3.0.jar
        amazon_kclpy/jars/logback-core-1.3.0.jar
        amazon_kclpy/jars/jcommander-1.82.jar
        amazon_kclpy/jars/commons-io-2.11.0.jar
        amazon_kclpy/jars/commons-logging-1.1.3.jar
        amazon_kclpy/jars/commons-collections4-4.2.jar
        amazon_kclpy/jars/commons-beanutils-1.9.4.jar
        amazon_kclpy/jars/commons-collections-3.2.2.jar
      This doesn't affect the rest of the installation, but may make it more
      difficult for you to run the sample app and get started.

      You should consider running:

          python setup.py download_jars
          python setup.py install

      Which will download the required jars and rerun the install.

      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for amazon-kclpy
  Running setup.py clean for amazon-kclpy
Failed to build amazon-kclpy
ERROR: Could not build wheels for amazon-kclpy, which is required to install pyproject.toml-based projects