Nodes types in ILM policies

I setup new cluster with with Elastic version 7.7.1 and enabled ILM, but while enabling warm phase in new polices I'm seeing 400 status code.

Error loading node attribute information

400: Bad Request. [illegal_argument_exception] Values less than -1 bytes are not supported: -4057972736b

Here is my elasticsearch.yml for one of data node looks like:

xpack.security.transport.ssl.verification_mode=certificate
xpack.security.transport.ssl.truststore.path=certs/elastic-certificates.p12
xpack.security.transport.ssl.keystore.path=certs/elastic-certificates.p12
xpack.security.transport.ssl.enabled=true
xpack.security.enabled=true
xpack.security.authc.realms.pki.pki1.order=1
xpack.monitoring.history.duration=7d
xpack.monitoring.collection.enabled=true
search.remote.connect=false
node.name=${HOSTNAME}
node.ml=false
node.master=false
node.ingest=true
node.data=true
node.attr.rack_id=fra-237-50
node.attr.data=warm
http.cors.enabled=true
http.cors.allow-origin=*
ES_JAVA_OPTS=-Xms24g -Xmx24g
discovery.zen.ping.unicast.hosts=es-master
cluster.routing.allocation.awareness.attributes=rack_id
cluster.name=es-cluster
node.remote_cluster_client=false

Also when Im trying to run nodes/stats I'm seeing this error

{
  "error" : {
    "root_cause" : [
      {
        "type" : "illegal_argument_exception",
        "reason" : "Values less than -1 bytes are not supported: -4054827008b"
      }
    ],
    "type" : "illegal_argument_exception",
    "reason" : "Values less than -1 bytes are not supported: -4054827008b",
    "suppressed" : [
      {
        "type" : "illegal_state_exception",
        "reason" : "Failed to close the XContentBuilder",
        "caused_by" : {
          "type" : "i_o_exception",
          "reason" : "Unclosed object or array found"
        }
      }
    ]
  },
  "status" : 400
}

There is nothing specific in logs.

Thank You in Advance