We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 776c38b commit 034a226Copy full SHA for 034a226
bin/row-size-sampler.sh
@@ -49,12 +49,13 @@ for ks in $keyspaces; do
49
ttl_factor="y"
50
static_factor="n"
51
52
- describe=$(echo desc table $ks.$tb | kqlsh "$@")
53
-
+ #using defualt ttl
54
while read line; do ttl_factor="n" ; done < <(echo desc table $ks.$tb | kqlsh "$@" | xargs echo | grep -i "default_time_to_live = 0")
55
+ #using blobs
56
while read line; do blob_factor="y" ; done < <(echo desc table $ks.$tb | kqlsh "$@" | xargs -n1 echo | grep -i blob)
57
58
+ #using statics
59
while read line; do static_factor="y" ; done < <(echo desc table $ks.$tb | kqlsh "$@" | xargs -n1 echo | grep -i static)
60
61
#Calculate averages using awk
0 commit comments