bitmap_hash
bitmap_hash
概要
任意のタイプの入力に対して32ビットのハッシュ値を計算し、ハッシュ値を含むビットマップを返します。これは、StarRocksテーブルのビットマップフィールドに非整数フィールドをインポートするために、ストリームのロードタスクで主に使用されます。例えば:
cat data | curl --location-trusted -u user:passwd -T - \
-H "columns: dt,page,device_id, device_id=bitmap_hash(device_id)" \
http://host:8410/api/test/testDb/_stream_load
構文
BITMAP BITMAP_HASH(expr)
例
MySQL > select bitmap_count(bitmap_hash('hello'));
+------------------------------------+
| bitmap_count(bitmap_hash('hello')) |
+------------------------------------+
| 1 |
+------------------------------------+
select bitmap_to_string(bitmap_hash('hello'));
+----------------------------------------+
| bitmap_to_string(bitmap_hash('hello')) |
+----------------------------------------+
| 1321743225 |
+----------------------------------------+