Advertisement
Guest User

Untitled

a guest
Nov 30th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. (From AWS Support)
  2. Thanks for your patience during our investigation. I also tried to reproduce this in my environment as well and I am facing the same issue as well. Even with "show tables" I am able to see that tables exist in the database but still it gives error "ERROR 1146 (42S02): Table 'schemaname.tablename' doesn't exist". Here are my test results:
  3.  
  4. - Took backup from MySQL Database using below command.
  5. sudo innobackupex --user=root --password=root1234 --stream=tar /tmp | gzip -9 >./mybackup.tar.gz
  6.  
  7. - Copied mybackup.tar.gz file to Amazon S3 Bucket.
  8.  
  9. - Initiated "Restore from S3" from the backup taken from my external MySQL Database.
  10.  
  11. - Restore completed successfully and I was able to see tables in "show tables".
  12.  
  13. - But still was facing "ERROR 1146 (42S02): Table 'schemaname.tablename' doesn't exist" for all tables in Aurora database
  14.  
  15. After doing some more investigation, I was able to see that this is identified as an internal bug. Due to which data is stored in the metadata, but is missing from INFORMATION_SCHEMA INNODB_SYS_TABLES Table. I understand it was working fine earlier (till last Tuesday, 11-22), but it appears that it is because of new released patch on Aurora cluster. Since you mentioned that you restored all these three clusters recently (x,y, and z), which means they must be running on the most updated patch of Aurora which have issues in reading table that were restored using "Restore from S3" feature.
  16.  
  17. Our engineering team have already identified this bug and will be released on 12/08. Therefore I would request either to wait for this to be fixed during next release or you can use one of the workaround to import data to Aurora RDS instance as suggested in our public documentation [1].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement