Limiting the amount of queries in Accumulo

40 Views Asked by At

Pls is there a way to get accumulo to limit the amount of scans by users? Eg allow only 10 scans per day for another user.

1

There are 1 best solutions below

0
Christopher On

Accumulo has a pluggable interface for authentication and table permissions that are called on each user scan. You could implement a custom solution in those.

However, if you're trying to manage resources with that much granularity, you're much better off putting something between your users and Accumulo, rather than let them query Accumulo directly. Accumulo is a pretty low-level application, and not really designed for free-for-all user interaction. Rather, it's designed to fit into a larger architecture for storing indexes of big data.