You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by je...@apache.org on 2018/11/27 22:06:29 UTC

[incubator-pinot] branch adlFix updated (87488bf -> 1563fd6)

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

jenniferdai pushed a change to branch adlFix
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 87488bf  Fixing AzurePinotFS move api
    omit 71aa28a  Fixing most todos in documentation
     new 1563fd6  Fixing adl move api

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (87488bf)
            \
             N -- N -- N   refs/heads/adlFix (1563fd6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/architecture.rst      |   8 +-
 docs/conf.py               |   2 -
 docs/llc.rst               |   2 +-
 docs/multitenancy.rst      | 290 ++++++++++++++++++++++-----------------------
 docs/pluggable_streams.png | Bin 136984 -> 0 bytes
 docs/pluggable_streams.rst |  10 +-
 docs/znode_layout.png      | Bin 43271 -> 0 bytes
 7 files changed, 155 insertions(+), 157 deletions(-)
 delete mode 100644 docs/pluggable_streams.png
 delete mode 100644 docs/znode_layout.png


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[incubator-pinot] 01/01: Fixing adl move api

Posted by je...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jenniferdai pushed a commit to branch adlFix
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit 1563fd6eaa29e1c66fdb9597bec936912c555fa1
Author: Jennifer Dai <jd...@linkedin.com>
AuthorDate: Tue Nov 27 14:06:19 2018 -0800

    Fixing adl move api
---
 .../src/main/java/com/linkedin/pinot/filesystem/AzurePinotFS.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pinot-azure-filesystem/src/main/java/com/linkedin/pinot/filesystem/AzurePinotFS.java b/pinot-azure-filesystem/src/main/java/com/linkedin/pinot/filesystem/AzurePinotFS.java
index 796d4a0..0a7e84b 100644
--- a/pinot-azure-filesystem/src/main/java/com/linkedin/pinot/filesystem/AzurePinotFS.java
+++ b/pinot-azure-filesystem/src/main/java/com/linkedin/pinot/filesystem/AzurePinotFS.java
@@ -99,8 +99,7 @@ public class AzurePinotFS extends PinotFS {
     if (exists(dstUri) && !overwrite) {
       return false;
     }
-    //rename the file
-    return _adlStoreClient.rename(srcUri.getPath(), dstUri.getPath());
+    return copy(srcUri, dstUri) && delete(srcUri, true);
   }
 
   @Override


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org