You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a java based AWS lambda function running with a fat jar using layer. I am planning to put all dependencies in my EFS file store in one jar, and add jar in the classpath.
I have tried setting the lambda environment variable as below, but the lambda function doesn't find class files included in the EFS Jar file.
set environment variable CLASSPATH = /mnt/efs/libs/*
set environment variable JAVA_OPTION = -classpath /mnt/efs/libs/*
Any pointers on how to configure classpath pointing to EFS.
The text was updated successfully, but these errors were encountered:
I have a java based AWS lambda function running with a fat jar using layer. I am planning to put all dependencies in my EFS file store in one jar, and add jar in the classpath.
I have tried setting the lambda environment variable as below, but the lambda function doesn't find class files included in the EFS Jar file.
set environment variable CLASSPATH = /mnt/efs/libs/*
set environment variable JAVA_OPTION = -classpath /mnt/efs/libs/*
Any pointers on how to configure classpath pointing to EFS.
The text was updated successfully, but these errors were encountered: