You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/hdinsight/hbase/apache-hbase-phoenix-performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ Secondary indexes can improve read performance by turning what would be a full t
105
105
106
106
### Use covered indexes
107
107
108
-
Covered indexes are indexes that include data from the row in addition to the values that are indexed. After finding the desired index entry, there's no need to access the primary table.
108
+
Covered indexes are indexes that include data from the row in addition to the values that are indexed. After you find the desired index entry, there's no need to access the primary table.
109
109
110
110
For example, in the example contact table you could create a secondary index on just the socialSecurityNum column. This secondary index would speed up queries that filter by socialSecurityNum values, but retrieving other field values require another read against the main table.
Copy file name to clipboardExpand all lines: articles/hdinsight/hbase/query-hbase-with-hbase-shell.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.date: 01/02/2025
11
11
12
12
# Quickstart: Query Apache HBase in Azure HDInsight with HBase Shell
13
13
14
-
In this quickstart, you learn how to use Apache HBase Shell to create an HBase table, insert data, and then query the table.
14
+
In this quickstart, you learn how to use Apache HBase Shell to create a HBase table, insert data, and then query the table.
15
15
16
16
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
17
17
@@ -45,7 +45,7 @@ You can use SSH to connect to HBase clusters, and then use Apache HBase Shell to
45
45
hbase shell
46
46
```
47
47
48
-
3. Use `create` command to create an HBase table with two-column families. Enter the following command:
48
+
3. Use `create` command to create a HBase table with two-column families. Enter the following command:
49
49
50
50
```hbase
51
51
create 'Contacts', 'Personal', 'Office'
@@ -114,7 +114,7 @@ To delete a cluster, see [Delete a HDInsight cluster using your browser, PowerSh
114
114
115
115
## Next steps
116
116
117
-
In this quickstart, you learned how to use Apache HBase Shell to create an HBase table, insert data, and then query the table. To learn more about data stored in HBase, the next article will show you how to execute queries with Apache Spark.
117
+
In this quickstart, you learned how to use Apache HBase Shell to create a HBase table, insert data, and then query the table. To learn more about data stored in HBase, the next article will show you how to execute queries with Apache Spark.
118
118
119
119
> [!div class="nextstepaction"]
120
120
> [Use Apache Spark to read and write Apache HBase data](../hdinsight-using-spark-query-hbase.md)
0 commit comments