-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] query #19
Comments
why do you compare with sqlite? |
I compare it with SQLite because you can use Hive most of the time instead of SQLite. You can do filtering in code. If you have a very large database and you need filtering, you should stick to SQLite. |
just to be sure, how much "very large" means? i always wanted to know 😄 |
Below 100,000 should be no problem for hive. If your rely on filtering (which you have to do yourself), I wouldn't use more than 1000-5000. |
Can I replace sqlite to hive (SELECT * USERS WHERE ID > 0 AND gender LIKE "male" OR name LIKE "%ohn%" SORT BY age DESC )
Or this plugin work only with key-valur pair?
The text was updated successfully, but these errors were encountered: