AI Zone Admin Forum Add your forum

NEWS: Chatbots.org survey on 3000 US and UK consumers shows it is time for chatbot integration in customer service!read more..

CS postgres fix
 
 

If you find that you are not writing to postgres anymore,  it may be because your table has a unique constraint. This is a problem that I burned 4 hours trying to solve. Maybe this will help someone else.

It is unclear how I added this, but you can remove the constraint.

The CS bug.txt file will show this:

Postgres filessys write failed for USERS/topic_ec2-user_share.txt
MinReleaseStackGap 79MB MinHeapAvailable 80MB
MaxBuffers used 7 of 80

The AWS log was showing this
2019-05-17 11:15:55 UTC:1.31.23.4(37010):m@users:[756]:ERROR: invalid input syntax for type bytea
2019-05-17 11:15:55 UTC:1.31.23.4(37010):m@users:[756]:STATEMENT: INSERT INTO userfiles (file, userid) VALUES ($1::bytea, $2::varchar) ;


from the aws console, execute this:
ALTER TABLE userfiles DROP CONSTRAINT userfiles_pkey;

Dropping the unique constraint will fix it.

hope this helps someone else.

 

 
  login or register to react