<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Arcgis API on AWS Lambda in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1240583#M8161</link>
    <description>&lt;P&gt;I was curious if anyone has recent success with this using the latest arcgis api module. The size of the site-package folder that gets filed up with ArcGIS API python dependencies seems to always be larger that was is allowed. Ive tried striping the package that would be uploaded to just the API module, but seems that lambda always complains of need additional modules in order to run&lt;/P&gt;</description>
    <pubDate>Tue, 13 Dec 2022 14:30:28 GMT</pubDate>
    <dc:creator>MichaelKarikari1</dc:creator>
    <dc:date>2022-12-13T14:30:28Z</dc:date>
    <item>
      <title>Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785314#M1343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to upload a package to AWS Lambda and can not find/install the ArcGIS Python API for my package.&amp;nbsp; Has anyone done this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2017 17:58:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785314#M1343</guid>
      <dc:creator>DanielHunter</dc:creator>
      <dc:date>2017-10-13T17:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785315#M1344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Figured this out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Amazon EC2 and spin up a free tier Linux instance.&lt;/P&gt;&lt;P&gt;Install Python 3.6&lt;/P&gt;&lt;P&gt;Install Anaconda and use Conda to install the ArcGIS Modules&lt;/P&gt;&lt;P&gt;Zip up the install directory along with your Lambda_function.py file and upload it to Lambda (or s3)&lt;/P&gt;&lt;P&gt;Dependencies required for Lambda to work include ArcGIS, NumPy, Pandas and PyTz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Putty Tools were a good resource to work between Windows and Linux environments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 15:41:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785315#M1344</guid>
      <dc:creator>DanielHunter</dc:creator>
      <dc:date>2017-10-23T15:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785316#M1345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice work Daniel.&amp;nbsp; I too recently went through this exercise.&amp;nbsp; One thing you might consider for the future is to create a Python virtual environment, pip install numpy and pandas, and then copy the arcgis module into this folder.&amp;nbsp; This way, the only thing in this folder than needs to be zipped up is /arcgis, /numpy, and /pandas; not the entire Anaconda install folder.&amp;nbsp; This should significantly reduce your upload package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nice job!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:38:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785316#M1345</guid>
      <dc:creator>BillMajor</dc:creator>
      <dc:date>2017-11-16T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785317#M1346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/2246"&gt;Bill Major&lt;/A&gt;‌, &lt;A href="https://community.esri.com/migrated-users/139206"&gt;Daniel Hunter&lt;/A&gt;‌ -&lt;/P&gt;&lt;P&gt;My question is not just about Lambda, but also integrating this into a preexisting python environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know where this is on the Windows Anaconda install? Anaconda is in C:\ProgramData\Anaconda3 by following the installer's default. There is a folder C:\ProgramData\Anaconda3\Lib\site-packages\arcgis with a bunch of .py scripts. Is that folder all I need to grab, or are there other entries written elsewhere (like a registry of modules)? Does the arcgis API imports other modules I need to get? &lt;/P&gt;&lt;P&gt;-- For Lambda, I assume I just drop the arcgis folder under my scripts and zip it up, does that sound right?&lt;/P&gt;&lt;P&gt;-- For the existing python, do I assume I just re-create whatever conda created. I see there is a tarball in the Esri Anaconda channel. Is that a better starting point? All I could find on GitHub (via Google) were training docs and samples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Nov 2017 05:15:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785317#M1346</guid>
      <dc:creator>DavidAskov1</dc:creator>
      <dc:date>2017-11-18T05:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785318#M1347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These instructions from Esri should guide you.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/python/guide/install-and-set-up/" title="https://developers.arcgis.com/python/guide/install-and-set-up/"&gt;install and set up | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Lambda - I believe the package needs to be compiled in Linux environment for it to work properly.&amp;nbsp; You'll need a linux machine to do so...you can create a new one on ec2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Existing Python - Virtual environments seem to be the way to go.&amp;nbsp; Consider creating a new virtual environment and installing arcgis api through conda.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2017 13:34:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785318#M1347</guid>
      <dc:creator>DanielHunter</dc:creator>
      <dc:date>2017-11-20T13:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785319#M1348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One Question I would have is about the licensing, for example some of the scripts I would want to put in Lambda checkout extension.&amp;nbsp;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/checkoutextension.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/checkoutextension.htm"&gt;CheckOutExtension—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how this might look for Lambda since it would not have the ArcGIS License Manager Integration? This would be huge I think if there was a way.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Sep 2018 02:18:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785319#M1348</guid>
      <dc:creator>JonNordling1</dc:creator>
      <dc:date>2018-09-08T02:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785320#M1349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jon - I think you are looking for info on ArcPy. This thread is about Esri's other major Python API, called the "&lt;EM&gt;ArcGIS API for Python&lt;/EM&gt;" (not a very creative name). ArcPy requires licensing, whereas the ArcGIS API for Python does not. That is more about working with server products, so you usually have to authenticate to the server, but you don't need any license to use the API itself.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Sep 2018 00:54:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785320#M1349</guid>
      <dc:creator>DavidAskov1</dc:creator>
      <dc:date>2018-09-11T00:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785321#M1350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there an easier way of doing this without spinning up a Linux machine?&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;I am trying to run through the steps in this&amp;nbsp;&lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-enterprise/administration/webhooks-dev-summit-2019/"&gt;blog post,&lt;/A&gt;&amp;nbsp;which suggests using PIP, but makes no mention of the machine needing to be linux.&amp;nbsp;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;However, we know that&amp;nbsp;&lt;A href="https://aws.amazon.com/premiumsupport/knowledge-center/build-python-lambda-deployment-package/"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;AWS&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: #6a6a6a; background: white; font-size: 10.5pt; "&gt;Lambda&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;&amp;nbsp;runs under a&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: #6a6a6a; background: white; font-size: 10.5pt; "&gt;Linux&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;&amp;nbsp;environment&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;"&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;Can we just download &lt;A href="https://anaconda.org/Esri/arcgis/files"&gt;the linux package from Conda?&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;linux-64/arcgis-1.7.0-py37h39e3cac_863.tar.bz2&amp;nbsp; - is this the right one for Lambda?&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;And then upload a zipfile of this package into Lamdba?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2019 01:12:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785321#M1350</guid>
      <dc:creator>SimonJackson</dc:creator>
      <dc:date>2019-11-01T01:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785322#M1351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its been a while since I've done this but don't let the linux instance deter you, its really very simple.&amp;nbsp; If I remember correctly the linux machine was needed for compilation and running the scripts...I'm unfamiliar with the linux package for Conda.&amp;nbsp; I've attached some notes I made a few years ago - They're probably pretty dated.&amp;nbsp; Good luck.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Built EC2 instance using Amazon Linux AMI (AWS Linux AMI for Lambda)&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="http://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html"&gt;http://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html&lt;/A&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Use Putty to connect to Linux machine from windows&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html"&gt;https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html&lt;/A&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Download WinSCP to transfer between Windows and Linux:&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="https://winscp.net/eng/download.php"&gt;https://winscp.net/eng/download.php&lt;/A&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;Use this workflow steps 5 through 9&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="http://docs.aws.amazon.com/lambda/latest/dg/with-s3-example-deployment-pkg.html"&gt;http://docs.aws.amazon.com/lambda/latest/dg/with-s3-example-deployment-pkg.html&lt;/A&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;STRONG&gt;5. Install Python 3.6 and virtualenv using the following steps:&lt;/STRONG&gt;&lt;BR /&gt;sudo yum install -y gcc zlib zlib-devel openssl openssl-devel&lt;BR /&gt;wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz&lt;BR /&gt;tar -xzvf Python-3.6.1.tgz&lt;BR /&gt;cd Python-3.6.1 &amp;amp;&amp;amp; ./configure &amp;amp;&amp;amp; make&lt;BR /&gt;sudo make install&lt;BR /&gt;sudo /usr/local/bin/pip3 install virtualenv&lt;BR /&gt;&lt;STRONG&gt;6. Choose the virtual environment that was installed via pip3&lt;/STRONG&gt;&lt;BR /&gt;/usr/local/bin/virtualenv ~/shrink_venv&lt;BR /&gt;source ~/shrink_venv/bin/activate&lt;BR /&gt;&lt;STRONG&gt;7. Install libraries in the virtual environment&lt;/STRONG&gt;&lt;BR /&gt;pip install Pillow&lt;BR /&gt;pip install boto3&lt;BR /&gt;&lt;STRONG&gt;8. Add the contents of lib and lib64 site-packages to your .zip file.&lt;/STRONG&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;cd $VIRTUAL_ENV/lib/python3.6/site-packages&lt;BR /&gt;zip -r9 ~/CreateThumbnail.zip *&lt;BR /&gt;&lt;STRONG&gt;9. Add your python code to the .zip file&lt;/STRONG&gt;&lt;BR /&gt;cd ~&lt;BR /&gt;zip -g CreateThumbnail.zip CreateThumbnail.py&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;I couldn’t get the py file added to the zip so I copied the zip back to the windows environment and simply rezipped the original contents along with the py file.&amp;nbsp;&amp;nbsp;Loaded that to AWS Lambda…&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2019 11:17:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785322#M1351</guid>
      <dc:creator>DanielHunter</dc:creator>
      <dc:date>2019-11-01T11:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785323#M1352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/139206"&gt;Daniel Hunter&lt;/A&gt;‌ - big thanks for taking the time to share your workings.&amp;nbsp; It would appear others on StackOverflow also take a similar approach.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will take a look at working on this later today.&amp;nbsp; Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Nov 2019 23:35:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785323#M1352</guid>
      <dc:creator>SimonJackson</dc:creator>
      <dc:date>2019-11-03T23:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785324#M1353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;- Packaged&amp;nbsp;ONLY in Linux env ? I was playing with Anaconda / Conda in window 10 ( all that virtual env. mimicking)&amp;nbsp; and install ArcGIS package&amp;nbsp;but&amp;nbsp;no luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below is error from AWS Lambda with simple "from arcgis.gis import GIS" testing&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;- {&lt;BR /&gt; "errorMessage": "Unable to import module 'main': No module named 'requests'",&lt;BR /&gt; "errorType": "Runtime.ImportModuleError"&lt;BR /&gt;}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Sep 2020 02:52:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/785324#M1353</guid>
      <dc:creator>joonpark</dc:creator>
      <dc:date>2020-09-27T02:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222830#M7923</link>
      <description>&lt;P&gt;This is gold.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 15:18:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222830#M7923</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2022-10-18T15:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222833#M7924</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/148881"&gt;@JonNordling1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I believe if you use the checkOutextension function in the uploaded lambda script, it becomes a matter of access.&lt;/P&gt;&lt;P&gt;If the aws environment where the lambda is deployed has port access to the license manager, it should be able to grab the license for the script.&lt;/P&gt;&lt;P&gt;I have not verified this, but this are my thoughts on this.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 15:23:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222833#M7924</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2022-10-18T15:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222844#M7925</link>
      <description>&lt;P&gt;Seems like ArcPy is too big to fit into lambda restrictions:&lt;BR /&gt;&lt;A href="https://community.esri.com/t5/python-ideas/allow-arcpy-to-be-loaded-and-executed-through-aws/idi-p/1063441" target="_blank"&gt;https://community.esri.com/t5/python-ideas/allow-arcpy-to-be-loaded-and-executed-through-aws/idi-p/1063441&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There should be other alternatives to explore, such as AWS Fargate, or AWS Batch&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 15:36:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1222844#M7925</guid>
      <dc:creator>AndresCastillo</dc:creator>
      <dc:date>2022-10-18T15:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1240583#M8161</link>
      <description>&lt;P&gt;I was curious if anyone has recent success with this using the latest arcgis api module. The size of the site-package folder that gets filed up with ArcGIS API python dependencies seems to always be larger that was is allowed. Ive tried striping the package that would be uploaded to just the API module, but seems that lambda always complains of need additional modules in order to run&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2022 14:30:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1240583#M8161</guid>
      <dc:creator>MichaelKarikari1</dc:creator>
      <dc:date>2022-12-13T14:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Arcgis API on AWS Lambda</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1658820#M11739</link>
      <description>&lt;P&gt;Esri is releasing a docker container that has the ArcGIS API library and it's dependencies contiled in Linux. This container can be uploaded to an AWS ECR and run from there.&lt;/P&gt;&lt;P&gt;"Push to your &lt;EM&gt;private&lt;/EM&gt; AWS ECR instance, and configure lambda to run from this container image. As of this writing, public AWS ECR instances are not supported for lambda."&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-python-api/tree/master/docker" target="_blank"&gt;https://github.com/Esri/arcgis-python-api/tree/master/docker&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 19:20:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-api-on-aws-lambda/m-p/1658820#M11739</guid>
      <dc:creator>DrewDowling</dc:creator>
      <dc:date>2025-10-17T19:20:08Z</dc:date>
    </item>
  </channel>
</rss>

