- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
when i import a table from hbase the table is imported successfully but when i scan the table iam getting the error ERROR: org.apache.hadoop.hbase.UnknownScannerException: Name: 120, already closed? please help me??
- Labels:
-
Apache Hadoop
-
Apache HBase
-
Apache Sqoop
Created ‎05-24-2016 04:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Created ‎05-24-2016 04:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Increase the value of hbase.client.scanner.timeout.period. Make sure that hbase.rpc.timeout is at least as large as hbase.scanner.timeout. Most likely, the client took too much time rendering the data in your terminal and the scanner in the HBase RegionServer memory was closed to free resources. When the client went to fetch the next batch of records, the regionserver informed your client that it already closed the scanner you were trying to use.
Created ‎05-24-2016 04:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Increase the value of hbase.client.scanner.timeout.period. Make sure that hbase.rpc.timeout is at least as large as hbase.scanner.timeout. Most likely, the client took too much time rendering the data in your terminal and the scanner in the HBase RegionServer memory was closed to free resources. When the client went to fetch the next batch of records, the regionserver informed your client that it already closed the scanner you were trying to use.
Created ‎05-24-2016 06:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you Very Much @Josh Elser
