- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
How do you test an HBase Endpoint Coprocessor?
- Labels:
-
Apache HBase
Created ‎06-29-2016 02:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can you test to see if the processor is working?
Is there a way to test from the shell?
Created ‎06-29-2016 02:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can add debug logs in your coprocessor.
Enable DEBUG logging on region servers and check the logs after action is performed in shell.
Created ‎06-29-2016 02:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you describe the function of the coprocessor ?
It should be possible to use shell and observe the side effect your coprocessor makes.
Created ‎06-29-2016 02:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can add debug logs in your coprocessor.
Enable DEBUG logging on region servers and check the logs after action is performed in shell.
Created ‎06-29-2016 02:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am just trying on the Sum processor example that's out there for now
Created ‎06-29-2016 02:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Here is a good example of observer coprocessor with testing code. Don't know if we have anything to test through hbase shell.
Created ‎06-29-2016 06:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
it's the example on for Sum
