When you view an Object Store key in Runtime Manager, the value for the key displays as [binary value] BINARY.
Mule 4 wraps values into a Mule object that causes them to be only visible in binary through Anypoint Platform. Behind the scenes, Mule 4 executes binary serialization with the Mule internal serializer. The user interface can’t deserialize the object, hence it can only tell you that the value is now binary in the user interface.
To view the key value, you need an Object Store retrieve flow in your app’s connector, such as:
<flow name="Retrieve" >
<http:listener doc:name="Listener" config-ref="HTTP_Listener_config1"
path="/retrieve">
<ee:repeatable-file-store-stream />
</http:listener>
<os:retrieve doc:name="Retrieve"
key="#[attributes.queryParams.key]"
objectStore="Object_store1"/>
</flow>