You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ilya Kasnacheev (JIRA)" <ji...@apache.org> on 2018/09/06 15:18:00 UTC

[jira] [Created] (IGNITE-9487) REST: getall can only output keys as scalars

Ilya Kasnacheev created IGNITE-9487:
---------------------------------------

             Summary: REST: getall can only output keys as scalars
                 Key: IGNITE-9487
                 URL: https://issues.apache.org/jira/browse/IGNITE-9487
             Project: Ignite
          Issue Type: Improvement
          Components: rest
            Reporter: Ilya Kasnacheev


Regardless of what ConnectorMessageInterceptor does, `getall' command can only output key as string or number, and not as JSON object as values can.

This is because output format is as follows:
{code}
{"successStatus":0,"affinityNodeId":null,"sessionToken":null,"response":{"CustomType [idHash=1588995554, hash=34706515, key=111]":{"val":"111"},"CustomType [idHash=978025370, hash=30386820, key=222]":{"val":"222"}},"error":null}
{code}

The desired output format may look like:
{code}
{"successStatus":0,"affinityNodeId":null,"sessionToken":null,"response":[{"key":{"key":111},"value":{"val":"111"}},{"key":{"key":222},"value":{"val":"222"}}],"error":null}
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)