cluster feature list

Allows features to be listed. Used after upgrading.

Syntax

CLI
maprcli cluster feature list
              [ -name <Feature name >]
              [ -enabled ]
              [ -disabled ]
REST
http[s]://<host>:<port>/rest/audit/cluster/feature/list?<parameters>

Parameters

Parameter Description

name

Lists the named feature. Displays whether the feature is enabled or disabled along with the feature name.

enabled

Lists only the enabled features. No value is taken.

disabled

Lists only the disabled features. No value is taken.

TIP The three dots in the output indicate multiple entries. Use -json to format the output.

Examples

CLI
Lists the disabled features
maprcli cluster feature list -disabled
dependency    name                        description    enabled  
              mfs.feature.audit.support                  false     
            
REST
NOTE Based on your SSL setup, use the appropriate SSL-related command line option in the curl command given below.
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 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
                                                                       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                           
TIP Use -json to format the output.
REST
Lists details for the 'mfs.feature.devicefile.support' feature
NOTE Based on your SSL setup, use the appropriate SSL-related command line option in the curl command given below.
curl -X GET -u <username> https://abc.sj.us:8443/rest/feature/list?name=mfs.feature.devicefile.support
{"timestamp":1669279328178,"timeofday":"2022-11-24 08:42:08.178 GMT+0000 AM","status":"OK","total":1,"data":[{"name":"mfs.feature.devicefile.support","enabled":true}]}