[GitHub] carbondata pull request #2161: Adding Alluxio Supporty

classic Classic list List threaded Threaded
155 messages Options
1 ... 345678
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
Github user chandrasaripaka commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r241980998
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/locks/AlluxioFileLock.java ---
    @@ -0,0 +1,112 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.core.locks;
    +
    +import java.io.DataOutputStream;
    +import java.io.IOException;
    +
    +import org.apache.carbondata.common.logging.LogServiceFactory;
    +import org.apache.carbondata.core.datastore.filesystem.AlluxioCarbonFile;
    +import org.apache.carbondata.core.datastore.impl.FileFactory;
    +import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
    +import org.apache.carbondata.core.util.path.CarbonTablePath;
    +
    +import org.apache.log4j.Logger;
    +
    +/**
    + * This class is used to handle the S3 File locking.
    + * This is acheived using the concept of acquiring the data out stream using Append option.
    + */
    +public class AlluxioFileLock extends AbstractCarbonLock {
    --- End diff --
   
    We cannot use HDFSFileLock..the reason is we cannot go back to HDFS, for file locking. I understand although the structure is copied from HDFS File..when we run our jobs on alluxio, we may not be using HDFS at all, because the default file system (fs.defaultFS) falls back to Alluxio..


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chandrasaripaka commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    @ravipesala , I want to put a CarbonFile Test based on Alluxio Mini Cluster, will that be ok ?


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r241981844
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/locks/AlluxioFileLock.java ---
    @@ -0,0 +1,112 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.core.locks;
    +
    +import java.io.DataOutputStream;
    +import java.io.IOException;
    +
    +import org.apache.carbondata.common.logging.LogServiceFactory;
    +import org.apache.carbondata.core.datastore.filesystem.AlluxioCarbonFile;
    +import org.apache.carbondata.core.datastore.impl.FileFactory;
    +import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
    +import org.apache.carbondata.core.util.path.CarbonTablePath;
    +
    +import org.apache.log4j.Logger;
    +
    +/**
    + * This class is used to handle the S3 File locking.
    + * This is acheived using the concept of acquiring the data out stream using Append option.
    + */
    +public class AlluxioFileLock extends AbstractCarbonLock {
    --- End diff --
   
    @chandrasaripaka What I meant was we can use the same HDFSFileLock class or extended class of HDFSFileLock as I don't see much difference in code of `AlluxioFileLock` and `HDFSFileLock`


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    @chandrasaripaka you can put the CarbonFile test with  Alluxio Mini Cluster but make sure it does not go beyond a few seconds to finish the test as it impacts the build time


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r241982006
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/AlluxioCarbonFile.java ---
    @@ -94,14 +93,9 @@ public CarbonFile getParentFile() {
       public boolean renameForce(String changeToName) {
         FileSystem fs;
         try {
    -      fs = fileStatus.getPath().getFileSystem(FileFactory.getConfiguration());
    -      if (fs instanceof DistributedFileSystem) {
    -        ((DistributedFileSystem) fs).rename(fileStatus.getPath(), new Path(changeToName),
    -            org.apache.hadoop.fs.Options.Rename.OVERWRITE);
    -        return true;
    -      } else {
    -        return false;
    -      }
    +      fs = fileStatus.getPath().getFileSystem(hadoopConf);
    +      fs.delete(new Path(changeToName), true);
    +      return fs.rename(fileStatus.getPath(), new Path(changeToName));
    --- End diff --
   
    You mean force rename is handled in Alluxio 1.7.1 ?  which Alluxio version are you using currently?


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chandrasaripaka commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r241983377
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/AlluxioCarbonFile.java ---
    @@ -94,14 +93,9 @@ public CarbonFile getParentFile() {
       public boolean renameForce(String changeToName) {
         FileSystem fs;
         try {
    -      fs = fileStatus.getPath().getFileSystem(FileFactory.getConfiguration());
    -      if (fs instanceof DistributedFileSystem) {
    -        ((DistributedFileSystem) fs).rename(fileStatus.getPath(), new Path(changeToName),
    -            org.apache.hadoop.fs.Options.Rename.OVERWRITE);
    -        return true;
    -      } else {
    -        return false;
    -      }
    +      fs = fileStatus.getPath().getFileSystem(hadoopConf);
    +      fs.delete(new Path(changeToName), true);
    +      return fs.rename(fileStatus.getPath(), new Path(changeToName));
    --- End diff --
   
    Actually no I mean..it checks for the existence of the file and renames only ( else it will return false), but will not do a force rename. But I am thinking we can use the same alluxio fs copy, programatically to copy the same contents from one file to another file(changedName under the same directory).


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chandrasaripaka commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r241983388
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/locks/AlluxioFileLock.java ---
    @@ -0,0 +1,112 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.core.locks;
    +
    +import java.io.DataOutputStream;
    +import java.io.IOException;
    +
    +import org.apache.carbondata.common.logging.LogServiceFactory;
    +import org.apache.carbondata.core.datastore.filesystem.AlluxioCarbonFile;
    +import org.apache.carbondata.core.datastore.impl.FileFactory;
    +import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
    +import org.apache.carbondata.core.util.path.CarbonTablePath;
    +
    +import org.apache.log4j.Logger;
    +
    +/**
    + * This class is used to handle the S3 File locking.
    + * This is acheived using the concept of acquiring the data out stream using Append option.
    + */
    +public class AlluxioFileLock extends AbstractCarbonLock {
    --- End diff --
   
    Understand , will just extend from that.


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chandrasaripaka commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    > @chandrasaripaka you can put the CarbonFile test with Alluxio Mini Cluster but make sure it does not go beyond a few seconds to finish the test as it impacts the build time
   
    @ravipesala , MiniClusters are multiprocess tests, they go beyond few seconds. Will check if I can make it in the timeline,


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user xubo245 commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    @chandrasaripaka Can you run with this code success? there are some error in my machine:
   
    `2018-12-17 11:24:11 ERROR AlluxioCarbonFile:107 - /xubo/default/alluxio_table_1c201e20-d7df-4b5e-b2c4-b8de82e23942/LockFiles/tablestatus.lock already exists
    java.io.IOException: /xubo/default/alluxio_table_1c201e20-d7df-4b5e-b2c4-b8de82e23942/LockFiles/tablestatus.lock already exists`


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user chandrasaripaka commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    I am changing the implementation for the same to read and copy the data from file system and change the same as suggested by @ravipesala , I get the similar issue with the previous code..as we need a force rename here, we have to delete the file again..and do the previous run..


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user xubo245 commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    @chandrasaripaka Please rebase it。


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user kevinjmh commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r243167033
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/filesystem/AlluxioCarbonFile.java ---
    @@ -94,14 +93,9 @@ public CarbonFile getParentFile() {
       public boolean renameForce(String changeToName) {
         FileSystem fs;
         try {
    -      fs = fileStatus.getPath().getFileSystem(FileFactory.getConfiguration());
    -      if (fs instanceof DistributedFileSystem) {
    -        ((DistributedFileSystem) fs).rename(fileStatus.getPath(), new Path(changeToName),
    -            org.apache.hadoop.fs.Options.Rename.OVERWRITE);
    -        return true;
    -      } else {
    -        return false;
    -      }
    +      fs = fileStatus.getPath().getFileSystem(hadoopConf);
    +      fs.delete(new Path(changeToName), true);
    +      return fs.rename(fileStatus.getPath(), new Path(changeToName));
    --- End diff --
   
    This problem is also for `S3CarbonFile` , `ViewFSCarbonFile`, `LocalCarbonFile`


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user kevinjmh commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r243168473
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/locks/AlluxioFileLock.java ---
    @@ -0,0 +1,112 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.core.locks;
    +
    +import java.io.DataOutputStream;
    +import java.io.IOException;
    +
    +import org.apache.carbondata.common.logging.LogServiceFactory;
    +import org.apache.carbondata.core.datastore.filesystem.AlluxioCarbonFile;
    +import org.apache.carbondata.core.datastore.impl.FileFactory;
    +import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
    +import org.apache.carbondata.core.util.path.CarbonTablePath;
    +
    +import org.apache.log4j.Logger;
    +
    +/**
    + * This class is used to handle the S3 File locking.
    + * This is acheived using the concept of acquiring the data out stream using Append option.
    + */
    +public class AlluxioFileLock extends AbstractCarbonLock {
    +
    +  /**
    +   * LOGGER
    +   */
    +  private static final Logger LOGGER =
    +          LogServiceFactory.getLogService(AlluxioCarbonFile.class.getName());
    +  /**
    +   * lockFilePath is the location of the lock file.
    +   */
    +  private String lockFilePath;
    +
    +  /**
    +   * lockFileDir is the directory of the lock file.
    +   */
    +  private String lockFileDir;
    +
    +  private DataOutputStream dataOutputStream;
    +
    +  /**
    +   * @param tableIdentifier
    +   * @param lockFile
    +   */
    +  public AlluxioFileLock(AbsoluteTableIdentifier tableIdentifier, String lockFile) {
    +    this(tableIdentifier.getTablePath(), lockFile);
    +  }
    +
    +  /**
    +   * @param lockFileLocation
    +   * @param lockFile
    +   */
    +  public AlluxioFileLock(String lockFileLocation, String lockFile) {
    +    this.lockFileDir = CarbonTablePath.getLockFilesDirPath(lockFileLocation);
    +    this.lockFilePath = CarbonTablePath.getLockFilePath(lockFileLocation, lockFile);
    +    LOGGER.info("Alluxio lock path:" + this.lockFilePath);
    +    initRetry();
    +  }
    +
    +  /* (non-Javadoc)
    +   * @see org.apache.carbondata.core.locks.ICarbonLock#unlock()
    +   */
    +  @Override
    +  public boolean unlock() {
    +    boolean status = false;
    +    if (null != dataOutputStream) {
    +      try {
    +        dataOutputStream.close();
    +        status = true;
    +      } catch (IOException e) {
    +        status = false;
    +      }
    +    }
    +    return status;
    +  }
    +
    +  /* (non-Javadoc)
    +   * @see org.apache.carbondata.core.locks.ICarbonLock#lock()
    +   */
    +  @Override
    +  public boolean lock() {
    +    try {
    +      if (!FileFactory.isFileExist(lockFileDir)) {
    +        FileFactory.mkdirs(lockFileDir, FileFactory.getFileType(lockFileDir));
    +      }
    +      if (!FileFactory.isFileExist(lockFilePath)) {
    +        FileFactory.createNewLockFile(lockFilePath, FileFactory.getFileType(lockFilePath));
    +      }
    +      dataOutputStream =
    +              FileFactory.getDataOutputStreamUsingAppend(lockFilePath,
    +                      FileFactory.getFileType(lockFilePath));
    --- End diff --
   
    Can you insert data into table? I found that the implementation of `append` function in Alluxio required to create a new file.  It will fail if file already exists. For line 100, carbon makes sure the file exists, and finally we always fail when locking.
   
    The code I mention in alluxio is this:
    https://github.com/Alluxio/alluxio/blob/21a3a87747010f087d1937f48bba3caa883885f8/core/client/hdfs/src/main/java/alluxio/hadoop/AbstractFileSystem.java#L127-L138



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #2161: [CARBONDATA-2218] AlluxioCarbonFile while try...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user kevinjmh commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2161#discussion_r243254949
 
    --- Diff: core/src/main/java/org/apache/carbondata/core/locks/AlluxioFileLock.java ---
    @@ -0,0 +1,112 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.carbondata.core.locks;
    +
    +import java.io.DataOutputStream;
    +import java.io.IOException;
    +
    +import org.apache.carbondata.common.logging.LogServiceFactory;
    +import org.apache.carbondata.core.datastore.filesystem.AlluxioCarbonFile;
    +import org.apache.carbondata.core.datastore.impl.FileFactory;
    +import org.apache.carbondata.core.metadata.AbsoluteTableIdentifier;
    +import org.apache.carbondata.core.util.path.CarbonTablePath;
    +
    +import org.apache.log4j.Logger;
    +
    +/**
    + * This class is used to handle the S3 File locking.
    + * This is acheived using the concept of acquiring the data out stream using Append option.
    + */
    +public class AlluxioFileLock extends AbstractCarbonLock {
    +
    +  /**
    +   * LOGGER
    +   */
    +  private static final Logger LOGGER =
    +          LogServiceFactory.getLogService(AlluxioCarbonFile.class.getName());
    +  /**
    +   * lockFilePath is the location of the lock file.
    +   */
    +  private String lockFilePath;
    +
    +  /**
    +   * lockFileDir is the directory of the lock file.
    +   */
    +  private String lockFileDir;
    +
    +  private DataOutputStream dataOutputStream;
    +
    +  /**
    +   * @param tableIdentifier
    +   * @param lockFile
    +   */
    +  public AlluxioFileLock(AbsoluteTableIdentifier tableIdentifier, String lockFile) {
    +    this(tableIdentifier.getTablePath(), lockFile);
    +  }
    +
    +  /**
    +   * @param lockFileLocation
    +   * @param lockFile
    +   */
    +  public AlluxioFileLock(String lockFileLocation, String lockFile) {
    +    this.lockFileDir = CarbonTablePath.getLockFilesDirPath(lockFileLocation);
    +    this.lockFilePath = CarbonTablePath.getLockFilePath(lockFileLocation, lockFile);
    +    LOGGER.info("Alluxio lock path:" + this.lockFilePath);
    +    initRetry();
    +  }
    +
    +  /* (non-Javadoc)
    +   * @see org.apache.carbondata.core.locks.ICarbonLock#unlock()
    +   */
    +  @Override
    +  public boolean unlock() {
    +    boolean status = false;
    +    if (null != dataOutputStream) {
    +      try {
    +        dataOutputStream.close();
    +        status = true;
    +      } catch (IOException e) {
    +        status = false;
    +      }
    +    }
    +    return status;
    +  }
    +
    +  /* (non-Javadoc)
    +   * @see org.apache.carbondata.core.locks.ICarbonLock#lock()
    +   */
    +  @Override
    +  public boolean lock() {
    +    try {
    +      if (!FileFactory.isFileExist(lockFileDir)) {
    +        FileFactory.mkdirs(lockFileDir, FileFactory.getFileType(lockFileDir));
    +      }
    +      if (!FileFactory.isFileExist(lockFilePath)) {
    +        FileFactory.createNewLockFile(lockFilePath, FileFactory.getFileType(lockFilePath));
    +      }
    +      dataOutputStream =
    +              FileFactory.getDataOutputStreamUsingAppend(lockFilePath,
    +                      FileFactory.getFileType(lockFilePath));
    --- End diff --
   
    @xubo245 "tablestatus.lock already exists" is caused by this


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user jackylk commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    Since user normally uses Alluxio as a read cache, I think we can firstly verify carbon on alluxio for the query scenario. As I am still not very sure what is the correct way to implement rename for Alluxio, in the meantime, we can merge this PR first. So please rebase it. @chandrasaripaka


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user kevinjmh commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    > Since user normally uses Alluxio as a read cache, I think we can firstly verify carbon on alluxio for the query scenario. As I am still not very sure what is the correct way to implement rename for Alluxio, in the meantime, we can merge this PR first. So please rebase it. @chandrasaripaka
   
    @jackylk My first try wants to use alluxio for query only as you said. But hive stores table location and carbon blocks `alter location` command, I have to create table after carbon runs on alluxio. Please mind this problem.


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder2.1/1899/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    Build Failed with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/2109/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    Build Failed  with Spark 2.3.2, Please check CI http://136.243.101.176:8080/job/carbondataprbuilder2.3/10154/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #2161: [CARBONDATA-2218] AlluxioCarbonFile while trying to ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/2161
 
    Build Failed with Spark 2.2.1, Please check CI http://95.216.28.178:8080/job/ApacheCarbonPRBuilder1/2111/



---
1 ... 345678