I just tried to start on my first function on Appwrite 1.4. I tried to just deploy a blank NodeJS template app (appwrite init function
and appwrite deploy function
). Attemping to execute (from the Console) just sits on waiting
forever, and the following is the logs from appwrite-worker-functions
:
appwrite-worker-functions | [Job] Received Job (653fea4385cc95.14034750).
appwrite-worker-functions | [Job] Received Job (653fea43863748.05154683).
appwrite-worker-functions | [Job] (653fea43863748.05154683) failed to run.
appwrite-worker-functions | [Job] (653fea43863748.05154683) Pool 'cache_redis_main' is empty (size 10)
appwrite-worker-functions | [Error] Type: Exception
appwrite-worker-functions | [Job] (653fea4385cc95.14034750) failed to run.
appwrite-worker-functions | [Job] (653fea4385cc95.14034750) Pool 'cache_redis_main' is empty (size 10)
appwrite-worker-functions | [Error] Message: Pool 'cache_redis_main' is empty (size 10)
appwrite-worker-functions | [Error] File: /usr/src/code/vendor/utopia-php/pools/src/Pools/Pool.php
appwrite-worker-functions | [Error] Line: 174
appwrite-worker-functions | [Error] Type: Exception
appwrite-worker-functions | [Error] Message: Pool 'cache_redis_main' is empty (size 10)
appwrite-worker-functions | [Error] File: /usr/src/code/vendor/utopia-php/pools/src/Pools/Pool.php
appwrite-worker-functions | [Error] Line: 174
My old functions (v2 I think?) are still working fine.
All function executions fail
All Function executions fail
Clean install or upgrade?
Can you try restarting this worker?
Upgrade
Restarted the container and it seems to be working now
Thank you!
[SOLVED] All Function executions fail
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...