This is for dStreams of any type
Implicit method that gives easy access to HBaseContext's bulk Delete.
Implicit method that gives easy access to HBaseContext's bulk Delete. This will not return a new DStream.
The hbaseContext object to identify which HBase cluster connection to use
The tableName that the deletes will be sent to
The function that will convert the DStream value into a HBase Delete Object
The number of Deletes to be sent in a single batch
Implicit method that gives easy access to HBaseContext's bulk get.
Implicit method that gives easy access to HBaseContext's bulk get. This will return a new DStream. Think about it as a DStream map function. In that every DStream value will get a new value out of HBase. That new value will populate the newly generated DStream.
The hbaseContext object to identify which HBase cluster connection to use
The tableName that the put will be sent to
How many gets to execute in a single batch
The function that will turn the RDD values in HBase Get objects
A resulting DStream with type R objects
Implicit method that gives easy access to HBaseContext's bulk get.
Implicit method that gives easy access to HBaseContext's bulk get. This will return a new DStream. Think about it as a DStream map function. In that every DStream value will get a new value out of HBase. That new value will populate the newly generated DStream.
The type of Object that will be coming out of the resulting DStream
The hbaseContext object to identify which HBase cluster connection to use
The tableName that the put will be sent to
How many gets to execute in a single batch
The function that will turn the RDD values in HBase Get objects
The function that will convert a HBase Result object into a value that will go into the resulting DStream
A resulting DStream with type R objects
Implicit method that gives easy access to HBaseContext's bulk put.
Implicit method that gives easy access to HBaseContext's bulk put. This will not return a new Stream. Think of it like a foreach
The hbaseContext object to identify which HBase cluster connection to use
The tableName that the put will be sent to
The function that will turn the DStream values into HBase Put objects.
Implicit method that gives easy access to HBaseContext's foreachPartition method.
Implicit method that gives easy access to HBaseContext's foreachPartition method. This will ack very much like a normal DStream foreach method but for the fact that you will now have a HBase connection while iterating through the values.
The hbaseContext object to identify which HBase cluster connection to use
This function will get an iterator for a Partition of an DStream along with a connection object to HBase
Implicit method that gives easy access to HBaseContext's mapPartitions method.
Implicit method that gives easy access to HBaseContext's mapPartitions method. This will ask very much like a normal DStream map partitions method but for the fact that you will now have a HBase connection while iterating through the values
This is the type of objects that will go into the resulting DStream
The hbaseContext object to identify which HBase cluster connection to use
This function will get an iterator for a Partition of an DStream along with a connection object to HBase
A resulting DStream of type R
These are implicit methods for a DStream that contains any type of data.
Type T