Greengrass Install Script Re-installs pip3 components every time

1

I have a greengrass component, written in python, with an "Install" script of:

"Install": "pip3 install --user boto3 && pip3 install --user awsiotsdk"

Every time I re-install this component, it re-installs both boto3 and awsiotsdk. I would have assumed that the pip3 install command would work once, at the first installation, and from then on, that the ggc_user would have those packages installed locally.

Are pip3 installations per-user (in this case the ggc_user), or per-component installation?

demandé il y a 2 ans1063 vues
4 réponses
2

Hello, The install command will be run every time Greengrass starts up and anytime the component version changes. Since a version of boto3/awsiotsdk already exists, pip's logic should be to simply move on. So yes, while the command will be run, it shouldn't actually be installing anything unless it is missing.

Using the --user flag with pip is the right thing to do as it will install the library for the current user. The user will be ggc_user or whatever user that component is configured to run as. Components be default will run as ggc_user, but they can be set in a deployment to run as any other user on the system.

AWS
EXPERT
répondu il y a 2 ans
0

My suggestion would be to use a virtual environment in the work directory of the component. This has 2 advantages:

  1. you can easily check for the existence of the virtual environment and skip the installation
  2. with the --user flag, if you deploy other components using conflicting libraries, the last component installed will win. By using virtual environments you avoid such situations.

You can see this approach applied here https://github.com/awslabs/aws-greengrass-labs-jupyterlab/blob/main/recipes/aws.greengrass.labs.jupyterlab.yaml

AWS
EXPERT
répondu il y a 2 ans
0

The component recipe also allow the use of a "skipif" key, so the script may be skipped if an executable is found or if a file exists. This could be use to skip the installation if the pip package file exists. Doc: https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html

TSpark
répondu il y a 2 ans
0

My recipe skips awsiot because its already installed. I am trying to upgrade from 1.11.2 to 1.11.3. Is there a way to force an update?

répondu il y a un an

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions