stream edit

Edits the values of parameters for the specified stream.

Permissions Required

To run this command, your user ID must have the following permissions:
NOTE The mapr user is not treated as a superuser. MapR Event Store For Apache Kafka does not allow the mapr user to run this command unless that user is given the relevant permission or permissions with access-control expressions.

Syntax

CLI
maprcli stream edit
	 -path Stream Path 
	[ -ttl <Time to live in seconds> ]
	[ -autocreate true|false ]
	[ -defaultpartitions <Default partitions per topic> ]
	[ -compression off|lz4|lzf|zlib ]
	[ -produceperm <Producer access control expression> default u:creator ]
	[ -consumeperm <Consumer access control expression> default u:creator ]
	[ -topicperm <Topic CRUD access control expression> default u:creator ]
	[ -copyperm <Stream copy access control expression> default u:creator ]
	[ -adminperm <Stream administration access control expression> default u:creator ]
        [ -defaulttimestamptype timestamp type: createtime | logappendtime. default: createtime ]
        [ -compact <Sets log compaction for a stream. Value: true | false default: false> ]
        [ -pidexpirysecs <Producer ID expiry time in seconds. Default: 604800> ]
        [ -mincompactionlag <Sets time in milliseconds for which a message remains uncompacted. default: 0> ]                
        [ -deleteretention <Sets the time in milliseconds for which delete records are retained. Default: 86400000> ] 
        [ -force <When used with -compact, forces enabling log compaction on a stream. Parameter takes no value.> ]
                
REST http[s]://<host>:<port>/rest/stream/edit?path=<path>

Parameters

Parameter Description
path The path and name of the stream to create.
ttl Specifies the number of seconds to elapse between the publication of a message in a topic in this stream and the expiration of that message.

Consumers do not see messages that have expired.

Messages that have expired are deleted during the next purge process. See Time-to-Live for Messages for details.

A value of 0 causes messages to be retained indefinitely.

autocreate Specifies whether to create a topic automatically when a producer tries to write the first message to it. Values are true and false. The default is true.
defaultpartitions Specifies the default number of partitions to allocate to new topics in the stream.
compression

Specifies the compression setting to use for the stream. Producer client libraries can bundle messages that are to be published on the same partition and compress them. The messages are sent to the server compressed, are stored compressed, are replicated to other containers compressed, and (if stream replication is configured) replicated to replica streams compressed. Consumer client libraries receive compressed data, decompresses it, and passes it to client applications.

Valid options are off, lzf, lz4, and zlib. The default setting is the type of compression that is set for the directory in which the stream is located.

For more information, see Compression.

produceperm Specifies the access-control expression that controls who can publish messages to topics in the stream. See ACE Syntax.
consumeperm Specifies the access-control expression that controls who can who can listen to topics in the stream. See ACE Syntax.
topicperm Specifies the access-control expression that controls who can create, edit, or remove topics in the stream. See ACE Syntax.
copyperm Specifies the access-control expression that controls who can use mapr copystream or mapr diffstreams on the stream. See ACE Syntax.
adminperm Determines which users can modify ACEs for a stream, set up replication of a stream, and modify other attributes of a stream.
IMPORTANT By default, only the stream owner can modify this setting; however, a patch is available that changes this behavior. After applying the patch, both the stream owner and the MAPR user can modify this setting. The patch works with MapR Core-6.1.0. To install patches, see Applying a Patch.
See ACE Syntax.

This permission includes the topicperm permission.

defaulttimestamptype Specifies the type of timestamp stored in the topic's message. Value: createtime | logappendtime Default: createtime. The topic inherits the default value from the stream unless the topic sets the timestamp type to a different value.

A createtime value is the time defined by the user or application (when creating the message). If user or application does not define this value (or passes null), the client uses the current system timestamp.

A logappendtime value is the time when the message (log) was appended to the server.

pidexpirysecs Specifies the expiration time for the Producer ID. This parameter fixes the lifetime for the Producer ID. Default: 604800
compact Sets log compaction for stream. When set to true, enables log compaction. When set to false, disables log compaction.

Value: true|false Default: false

NOTE A license is required to run the -compact option; otherwise, the command hangs. See Adding a License.
mincompactionlag Sets the minimum delay (in milliseconds) before which messages are not compacted. It is the minimum time that the messages are available for consumption. Beyond this time period, the messages may be compacted. Default: 0

The lag is calculated from the time that a message was produced to the stream topic-partition.

deleteretention Sets the minimum time (in milliseconds) before which deleted records are removed. It is the minimum time that the deleted records are still available. Beyone this time period, the deleted messages may be removed. Default: 86400000
force Used with the -compact parameter to force log compaction on a stream parameter. No values are passed. Used for backward compatibility.