Hello!
This has been an awesome package and has solved so many issues for me until now.
Currently I am using an AWS lambda which needs psycopg2 as a required package to connect to a timescaledb in the cloud.
I always encounter this error and my code can not work:
[ERROR] 2022-11-03T09:38:04.637Z d57f065c-6ac4-4c95-8c2e-7e6c6efd89e8 Error during turning states table into hypertable: function create_hypertable(unknown, unknown, if_not_exists => boolean, chunk_time_interval => interval) does not exist
LINE 1: SELECT create_hypertable('states', 'last_updated', if_not_ex...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
[ERROR] 2022-11-03T09:38:04.640Z d57f065c-6ac4-4c95-8c2e-7e6c6efd89e8 Error during set retention date to hypertable: function add_retention_policy(unknown, if_not_exists => boolean, drop_after => interval) does not exist
LINE 1: SELECT add_retention_policy('states', if_not_exists => TRUE,...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
My code is as below:
convert_hypertable_sql = f"SELECT create_hypertable('states', 'last_updated', if_not_exists => TRUE, chunk_time_interval => INTERVAL '1 day')"
set_rention_sql = F"SELECT add_retention_policy('states', if_not_exists => TRUE, drop_after => INTERVAL '7 days')"
cursor.execute(convert_hypertable_sql)
cursor.execute(set_rention_sql)
I tried the same code when running locally in a terminal and it works without any problem, can create the hypertable and the retention policy in my timescale db in cloud.
I also tried pip3 install psycopg2-binary -t ~/some_local_folder and paste all installed folders to my lambda function directory and deploy to AWS Lambda together, but that didn't work either and gave the same error.
I wonder is this create_hypertable and add_retention_policy SQL something specifically not supported by AWS lambda platform? I couldn't find any related reports online. It will be really appreciated if you can shine some lights on this.
Thank you very much!
Hello!
This has been an awesome package and has solved so many issues for me until now.
Currently I am using an AWS lambda which needs
psycopg2as a required package to connect to a timescaledb in the cloud.I always encounter this error and my code can not work:
My code is as below:
I tried the same code when running locally in a terminal and it works without any problem, can create the hypertable and the retention policy in my timescale db in cloud.
I also tried
pip3 install psycopg2-binary -t ~/some_local_folderand paste all installed folders to my lambda function directory and deploy to AWS Lambda together, but that didn't work either and gave the same error.I wonder is this
create_hypertableandadd_retention_policySQL something specifically not supported by AWS lambda platform? I couldn't find any related reports online. It will be really appreciated if you can shine some lights on this.Thank you very much!