[ 
https://issues.apache.org/jira/browse/HDDS-558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Namit Maheshwari updated HDDS-558:
----------------------------------
    Resolution: Not A Problem
        Status: Resolved  (was: Patch Available)

This is actually the correct behavior. 

In [KeyManagerImpl.java|http://keymanagerimpl.java/] openKey method is called 
first, and then eventually commitKey is called.

CreateTime and ModifyTime can be different. 

> When creating keys, the creationTime and modificationTime should ideally be 
> the same
> ------------------------------------------------------------------------------------
>
>                 Key: HDDS-558
>                 URL: https://issues.apache.org/jira/browse/HDDS-558
>             Project: Hadoop Distributed Data Store
>          Issue Type: Bug
>          Components: Ozone Client, Ozone Manager
>            Reporter: Dinesh Chitlangia
>            Assignee: Namit Maheshwari
>            Priority: Major
>              Labels: newbie
>         Attachments: HDDS-558.001.patch
>
>
> Steps to replicate:
>  # Start ozone
>  # Create Volume and Bucket or use existing ones
>  # Create Key
>  # List Keys for that bucket or just get key info
> We will see that the creationTime and ModificationTime has a minor difference.
>  
> {noformat}
> hadoop@fdaf56d9e9d8:~$ ./bin/ozone sh key put /rvol/rbucket/rkey sample.orc
> hadoop@fdaf56d9e9d8:~$ ./bin/ozone sh key list /rvol/rbucket
> [ {
> "version" : 0,
> "md5hash" : null,
> "createdOn" : "Wed, 26 Sep 2018 20:29:10 GMT",
> "modifiedOn" : "Wed, 26 Sep 2018 20:29:12 GMT",
> "size" : 2262690,
> "keyName" : "rkey"
> } ]{noformat}
> Potential fix area : KeyManagerImpl#commitKey
> {code:java}
> keyInfo = new OmKeyInfo.Builder()
>     .setVolumeName(args.getVolumeName())
>     .setBucketName(args.getBucketName())
>     .setKeyName(args.getKeyName())
>     .setOmKeyLocationInfos(Collections.singletonList(
>         new OmKeyLocationInfoGroup(0, locations)))
>     .setCreationTime(Time.now())
>     .setModificationTime(Time.now())
>     .setDataSize(size)
>     .setReplicationType(type)
>     .setReplicationFactor(factor)
>     .build();
> {code}
> For setting, both these values, we are getting current time and thus the 
> minor difference.



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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to