schema limit
Is there a physical limit to the number of schemas that can be created within an HP Vertica database? I don't see any such thing in the documentation, but thought I would check.
0
Comments
If you would like to check the catalog size you can use the below script. And result will be byte.
#!/bin/bash
find $1 -name "*_[12345678].cat" -printf "%s\n" -or -name "*_1[56789].cat" -printf "%s\n" -or -name "*_2[349].cat" -printf "%s\n" -or -name "*_3[0789].cat" -printf "%s\n" -or -name "*_4[0245].cat" -printf "%s\n" | awk '{s+=$0} END {print s}'
I was trying to use the above script, but no success with it.
Can you please show an example.
Can you please point all the impacts, when the catalog size grows more then 20GB.
Thanks
NC
Hi ,
I addition to this .
Keep in mind that Vertica keep the entire catalog to the memory (each node include replica of the entire catalog) , as a results for that , having large catalog may impact your query memory resources availability .