- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Questions regarding Phoenix with bulk CSV data loading and possible index population?
- Labels:
-
Apache Phoenix
Created ‎03-03-2016 03:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a few questions regarding Phoenix and CSV data loading. Currently on HDP 2.3.4.
1. Does "Bulk CSV Data Loading" support local index creation?
2. Does "Asynchronous Index Population" support local index creation?
OR
3. Is there any way to create a local index manually rather than automatic as when we are doing bulk upload in existing table, automatic local index becomes inconsistent. FYI - We are only using hbase bulk upload to upload data into hbase.
Created ‎03-03-2016 07:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1) Yes Bulk CSV data loading supports local indexes as well. You can happily go ahead with it.
2) Asynchronous index population supports local indexes but it would be better go by normal create index for local indexes because it's faster than async index population.
3) Only thing we can do is every time after loading data from HBase we need to rebuild the index but it will be costly.
Created ‎03-03-2016 07:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1) Yes Bulk CSV data loading supports local indexes as well. You can happily go ahead with it.
2) Asynchronous index population supports local indexes but it would be better go by normal create index for local indexes because it's faster than async index population.
3) Only thing we can do is every time after loading data from HBase we need to rebuild the index but it will be costly.
Created ‎03-03-2016 08:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks @Rajeshbabu Chintaguntla
Created ‎03-04-2016 03:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Rajeshbabu Chintaguntla so another question:
On hbase table there is a phoenix view. Now we are running a bunch of queries on phoenix view. Queries include (where, group by, aggregation functions etc.). Which indexes are more efficient in terms of execution time to run these queries - "global with hint" or "local"?
