removeCacheRulesForComputeGroup
Syntax
removeCacheRulesForComputeGroup(name, tableNames)
Details
Removes cache rules from a compute group, specifying the tables for which caching should be disabled.
Parameters
name: A STRING scalar specifying the name of the compute group from which cache rules are removed.
tableNames: A STRING scalar or vector specifying the tables to be removed from the compute group’s cache path. The tables are specified in the format of databaseName/tableName, for example "dfs://compute_test/tb1".
Wildcards are not supported.
Returns
None.
Examples
removeCacheRulesForComputeGroup("cgroup1", "dfs://compute_test/tb1")
removeCacheRulesForComputeGroup("cgroup1", ["dfs://compute_test/tb1", "dfs://compute_test/tb2"])
Related Functions: addCacheRulesForComputeGroup, getCacheRulesForComputeGroup
