You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by sa...@apache.org on 2019/10/02 19:34:00 UTC

[atlas] branch branch-2.0 updated: ATLAS-3434: Update janusgraph-hbase storage manager PREFERRED_TIMESTAMPS from MILLI to MICRO

This is an automated email from the ASF dual-hosted git repository.

sarath pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new f73f22b  ATLAS-3434: Update janusgraph-hbase storage manager PREFERRED_TIMESTAMPS from MILLI to MICRO
f73f22b is described below

commit f73f22b19ebc47ad92a093351ca2338414598cfa
Author: Sarath Subramanian <sa...@apache.org>
AuthorDate: Wed Oct 2 10:26:20 2019 -0700

    ATLAS-3434: Update janusgraph-hbase storage manager PREFERRED_TIMESTAMPS from MILLI to MICRO
    
    (cherry picked from commit cc6c2668992a92ef03a20a85ae74d441c1eff3be)
---
 .../main/java/org/janusgraph/diskstorage/hbase2/HBaseStoreManager.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graphdb/janus-hbase2/src/main/java/org/janusgraph/diskstorage/hbase2/HBaseStoreManager.java b/graphdb/janus-hbase2/src/main/java/org/janusgraph/diskstorage/hbase2/HBaseStoreManager.java
index f857012..40bcd1a 100644
--- a/graphdb/janus-hbase2/src/main/java/org/janusgraph/diskstorage/hbase2/HBaseStoreManager.java
+++ b/graphdb/janus-hbase2/src/main/java/org/janusgraph/diskstorage/hbase2/HBaseStoreManager.java
@@ -225,7 +225,7 @@ public class HBaseStoreManager extends DistributedStoreManager implements KeyCol
 
     public static final int PORT_DEFAULT = 9160;
 
-    public static final TimestampProviders PREFERRED_TIMESTAMPS = TimestampProviders.MILLI;
+    public static final TimestampProviders PREFERRED_TIMESTAMPS = TimestampProviders.MICRO;
 
     public static final ConfigNamespace HBASE_CONFIGURATION_NAMESPACE =
             new ConfigNamespace(HBASE_NS, "ext", "Overrides for hbase-{site,default}.xml options", true);