cluster feature list
Lists the status of features. Used after upgrading.
Syntax
- CLI
-
maprcli cluster feature list [ -name <feature name >] [ -enabled ] [ -disabled ]
- REST
-
Request Type GET Request URL http[s]://<host>:<port>/rest/cluster/feature/list?<parameters>
Parameters
Parameter | Description |
---|---|
|
(optional) Lists whether the specified feature is enabled or disabled. |
enabled |
(optional) Lists only the enabled features. |
|
(optional) Lists only the disabled features. |
TIP
The three dots in the output indicate multiple entries. Use
-json
to format the output.NOTICE
Running this command without any parameters lists the status for
all features.Examples
- CLI
- Lists the disabled features
-
maprcli cluster feature list -disabled dependency name description enabled mfs.feature.audit.support false
- REST
-
NOTEFor REST examples stated below, use the appropriate SSL-related command line option in the following curl command, according to your SSL setup.
curl -X GET -u <username> https://abc.sj.us:8443/rest/cluster/feature/list?disabled {"timestamp":1669281643862,"timeofday":"2022-11-24 09:20:43.862 GMT+0000 AM","status":"OK","total":0,"data":[]}
- CLI
- Lists the status of all features
-
maprcli cluster feature list dependency name description enabled cldb.feature.policiesmap.incache.enabled true cldb.feature.multi.compression true cldb.feature.volumenumcntrs.incache.enabled true {"dependency":{"name":"cldb.reduce.container.size","enabled":true}} mfs.feature.enforce.min.replication Support for Enforced Min Replication For IO true mfs.feature.db.repl.support true ... mfs.feature.storage.tiering.support Support for MapR Automated Storage Tiering. true cldb.feature.compression.zlib true ... mfs.feature.db.streams.v6.support Support for Replication Autosetup with Directcopy, ChangeData Replication with Changelog true bulk.container.create.support true ... cldb.ipv6.support Support for IPv6 addresses false mfs.feature.db.regionmerge.support true mfs.feature.metrics.support Support for volume metrics true ... mfs.feature.fileace.support Support for file-level access control expressions. true mfs.feature.name.container.size.control Support for limiting the name container data size true mfs.feature.dare Support for Data At Rest Encryption true ... mfs.feature.db.streams.v6dot1.support Support for Table Get/Scan, Secondary Indexes for Arrays true mfs.feature.db.spillv2.support true cldb.feature.compression.lz4 true mfs.feature.filecipherbit.support true mfs.feature.bulkwrite true cldb.feature.mapr.user.enabled true mfs.feature.db.bulkload.support true cldb.feature.separate.cldbvol.rpcs true ... mfs.feature.db.json.support Support for MapR-DB JSON tables and MapR-Streams. true ... mfs.feature.pbs Support for Policy Based Security. Enabled by default in 6.2.0 and later. true mfs.feature.fastacr.support true {"dependency":{"name":"cldb.reduce.container.size","enabled":true}} cldb.feature.cid.reuse Support for container identity reuse. true mfs.feature.streams.connect.support Support for Kafka Connect in the Distributed mode true ... mfs.feature.container.sharding.support Support for Container Sharding true mfs.feature.db.ace.support true ... mfs.feature.fastinodescan.support Support for fast scanning of inodes during mirror. true mfs.feature.tables true ... mfs.feature.snapshot.restore.support Support for Restoration of a volume to snapshot. true mfs.feature.rwmirror.support true ... mfs.feature.hardlinks.support Support for hardlinks. true cldb.feature.setgid true mfs.feature.snapshotdb.lite Support For (Switch to) SnapshotDB Lite true mfs.feature.sercmd.support true cldb.lbs.support Support for Label based storage true {"dependency":{"name":"mfs.feature.rwmirror.support","enabled":true}} mfs.feature.volume.upgrade true mfs.feature.devicefile.support true cldb.reduce.container.size true {"dependency":{"name":"cldb.reduce.container.size","enabled":true}} mfs.feature.external.ip Support for Reporting of External IP true mfs.feature.audit.support true cldb.feature.volumenumsnapshots.incache.enabled true mfs.feature.disk.flush Support for Disk Flush
TIPUse-json
to format the output. - REST
- Lists the status for the 'mfs.feature.devicefile.support' feature
-
NOTEFor REST examples stated below, use the appropriate SSL-related command line option in the following curl command, according to your SSL setup.